diff options
author | Jose Fonseca <jfonseca@vmware.com> | 2015-05-20 17:18:31 +0100 |
---|---|---|
committer | Jose Fonseca <jfonseca@vmware.com> | 2015-05-20 17:19:48 +0100 |
commit | 4ccc877fd37bd789b8c25f70c9032ac8eee4427d (patch) | |
tree | 11e311ad28fe95abeef0ae638079d8989649b996 /specs/d3d11.py | |
parent | cf519352ca16b29feb754c68cf1c2bb9ffec592d (diff) |
d3dtrace,d3dretrace: Fix clears with multiple rects.
Diffstat (limited to 'specs/d3d11.py')
-rw-r--r-- | specs/d3d11.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/specs/d3d11.py b/specs/d3d11.py index a99ea11b..add47c1e 100644 --- a/specs/d3d11.py +++ b/specs/d3d11.py @@ -1445,7 +1445,7 @@ ID3D11DeviceContext1.methods += [ StdMethod(Void, "PSGetConstantBuffers1", [(UINT, "StartSlot"), (UINT, "NumBuffers"), Out(Array(ObjPointer(ID3D11Buffer), "NumBuffers"), "ppConstantBuffers"), Out(Array(UINT, "NumBuffers"), "pFirstConstant"), Out(Array(UINT, "NumBuffers"), "pNumConstants")]), StdMethod(Void, "CSGetConstantBuffers1", [(UINT, "StartSlot"), (UINT, "NumBuffers"), Out(Array(ObjPointer(ID3D11Buffer), "NumBuffers"), "ppConstantBuffers"), Out(Array(UINT, "NumBuffers"), "pFirstConstant"), Out(Array(UINT, "NumBuffers"), "pNumConstants")]), StdMethod(Void, "SwapDeviceContextState", [(ObjPointer(ID3DDeviceContextState), "pState"), Out(Pointer(ObjPointer(ID3DDeviceContextState)), "ppPreviousState")]), - StdMethod(Void, "ClearView", [(ObjPointer(ID3D11View), "pView"), (Array(Const(FLOAT), 4), "Color"), (Pointer(Const(D3D11_RECT)), "pRect"), (UINT, "NumRects")]), + StdMethod(Void, "ClearView", [(ObjPointer(ID3D11View), "pView"), (Array(Const(FLOAT), 4), "Color"), (Array(Const(D3D11_RECT), "NumRects"), "pRect"), (UINT, "NumRects")]), ] |