diff options
author | José Fonseca <jose.r.fonseca@gmail.com> | 2012-05-08 12:09:42 +0100 |
---|---|---|
committer | José Fonseca <jose.r.fonseca@gmail.com> | 2012-05-08 12:09:42 +0100 |
commit | 3f174378e957e44beb3d1521ff003bcaaadd85b8 (patch) | |
tree | 805017ef4f22fd556c1a47e8542d2698b7611ede | |
parent | 45fff9c845efc32663a7d91c49e89430f648441d (diff) |
Fix typos in earlier commit.
Should have actually looked at the build output before pushing...
-rw-r--r-- | specs/d3dcommon.py | 2 | ||||
-rw-r--r-- | specs/dxgi.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/specs/d3dcommon.py b/specs/d3dcommon.py index e31b0c9a..9486ba87 100644 --- a/specs/d3dcommon.py +++ b/specs/d3dcommon.py @@ -304,7 +304,7 @@ D3D10_SHADER_MACRO = Struct('D3D10_SHADER_MACRO', [ ID3D10Blob = Interface('ID3D10Blob', IUnknown) ID3D10Blob.methods += [ StdMethod(LPVOID, 'GetBufferPointer', [], sideeffects=False), - StdMethod(SIZE_T, 'GetBufferSize', []), sideeffects=False, + StdMethod(SIZE_T, 'GetBufferSize', [], sideeffects=False), ] LPD3D10BLOB = ObjPointer(ID3D10Blob) diff --git a/specs/dxgi.py b/specs/dxgi.py index 0830cab4..5c7925e4 100644 --- a/specs/dxgi.py +++ b/specs/dxgi.py @@ -167,7 +167,7 @@ DXGI_MAP = Flags(UINT, [ ]) IDXGISurface.methods += [ - StdMethod(HRESULT, "GetDesc", [Out(Pointer(DXGI_SURFACE_DESC), "pDesc")]), sideeffects=False, + StdMethod(HRESULT, "GetDesc", [Out(Pointer(DXGI_SURFACE_DESC), "pDesc")], sideeffects=False), StdMethod(HRESULT, "Map", [Out(Pointer(DXGI_MAPPED_RECT), "pLockedRect"), (DXGI_MAP, "MapFlags")]), StdMethod(HRESULT, "Unmap", []), ] |