Commit 8c981140 authored by H. Verbeet's avatar H. Verbeet Committed by Alexandre Julliard

wined3d: Add traces to IWineD3DVertexShaderImpl_SetFunction & IWineD3DPixelShaderImpl_SetFunction.

parent 2d6e661f
...@@ -919,6 +919,8 @@ static HRESULT WINAPI IWineD3DPixelShaderImpl_SetFunction(IWineD3DPixelShader *i ...@@ -919,6 +919,8 @@ static HRESULT WINAPI IWineD3DPixelShaderImpl_SetFunction(IWineD3DPixelShader *i
HRESULT hr; HRESULT hr;
shader_reg_maps reg_maps; shader_reg_maps reg_maps;
TRACE("(%p) : pFunction %p\n", iface, pFunction);
/* First pass: trace shader */ /* First pass: trace shader */
shader_trace_init((IWineD3DBaseShader*) This, pFunction); shader_trace_init((IWineD3DBaseShader*) This, pFunction);
pshader_set_limits(This); pshader_set_limits(This);
......
...@@ -1126,6 +1126,8 @@ static HRESULT WINAPI IWineD3DVertexShaderImpl_SetFunction(IWineD3DVertexShader ...@@ -1126,6 +1126,8 @@ static HRESULT WINAPI IWineD3DVertexShaderImpl_SetFunction(IWineD3DVertexShader
HRESULT hr; HRESULT hr;
shader_reg_maps reg_maps; shader_reg_maps reg_maps;
TRACE("(%p) : pFunction %p\n", iface, pFunction);
/* First pass: trace shader */ /* First pass: trace shader */
shader_trace_init((IWineD3DBaseShader*) This, pFunction); shader_trace_init((IWineD3DBaseShader*) This, pFunction);
vshader_set_limits(This); vshader_set_limits(This);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment