Skip to content

Commit

Permalink
xrIDirect3DDevice9::GetSoftwareVertexProcessing was returning a HRESU…
Browse files Browse the repository at this point in the history
…LT instead of a BOOL
  • Loading branch information
Spacebrain committed Apr 23, 2015
1 parent fdc90c6 commit e699503
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xrD3D9-Null/IDirect3DDevice9.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ HRESULT xrIDirect3DDevice9::GetScissorRect( RECT* pRect)
HRESULT xrIDirect3DDevice9::SetSoftwareVertexProcessing( BOOL bSoftware)
{ APIDEBUG("xrIDirect3DDevice9::SetSoftwareVertexProcessing"); return HRESULT_Proc(S_OK); };
BOOL xrIDirect3DDevice9::GetSoftwareVertexProcessing()
{ APIDEBUG("xrIDirect3DDevice9::GetSoftwareVertexProcessing"); return HRESULT_Proc(S_OK); };
{ APIDEBUG("xrIDirect3DDevice9::GetSoftwareVertexProcessing"); return TRUE; };
HRESULT xrIDirect3DDevice9::SetNPatchMode( float nSegments)
{ APIDEBUG("xrIDirect3DDevice9::SetNPatchMode"); return HRESULT_Proc(S_OK); };
float xrIDirect3DDevice9::GetNPatchMode()
Expand Down

0 comments on commit e699503

Please sign in to comment.