mirror of
https://github.com/Drezil/imgui.git
synced 2024-11-15 01:17:00 +00:00
set pixel shader and vertex shader to NULL
Previous graphic render may use shaders,so set pixel shader and vertex shader to NULL to force use fixed pipeline.
This commit is contained in:
parent
6e4d3dac1a
commit
e09e2cbd28
@ -57,7 +57,8 @@ static void ImGui_ImplDX9_RenderDrawLists(ImDrawList** const cmd_lists, int cmd_
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
g_pVB->Unlock();
|
g_pVB->Unlock();
|
||||||
|
g_pd3dDevice->SetPixelShader(NULL);
|
||||||
|
g_pd3dDevice->SetVertexShader(NULL);
|
||||||
g_pd3dDevice->SetStreamSource( 0, g_pVB, 0, sizeof( CUSTOMVERTEX ) );
|
g_pd3dDevice->SetStreamSource( 0, g_pVB, 0, sizeof( CUSTOMVERTEX ) );
|
||||||
g_pd3dDevice->SetFVF( D3DFVF_CUSTOMVERTEX );
|
g_pd3dDevice->SetFVF( D3DFVF_CUSTOMVERTEX );
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user