Skip to content

Commit

Permalink
d3dretrace: Dont retrace GetDC/ReleaseDC.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrfonseca committed Jun 25, 2015
1 parent 5642f65 commit 84eac25
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions specs/d3d9.py
Expand Up @@ -363,8 +363,8 @@
StdMethod(HRESULT, "GetDesc", [Out(Pointer(D3DSURFACE_DESC), "pDesc")], sideeffects=False),
StdMethod(HRESULT, "LockRect", [Out(Pointer(D3DLOCKED_RECT), "pLockedRect"), (ConstPointer(RECT), "pRect"), (D3DLOCK, "Flags")]),
StdMethod(HRESULT, "UnlockRect", []),
StdMethod(HRESULT, "GetDC", [Out(Pointer(HDC), "phdc")]),
StdMethod(HRESULT, "ReleaseDC", [(HDC, "hdc")]),
StdMethod(HRESULT, "GetDC", [Out(Pointer(HDC), "phdc")], sideeffects=False),
StdMethod(HRESULT, "ReleaseDC", [(HDC, "hdc")], sideeffects=False),
]

IDirect3DVolume9.methods += [
Expand Down

0 comments on commit 84eac25

Please sign in to comment.