Lines Matching refs:pSharedHandle
47 HANDLE *pSharedHandle ) in NineTexture9_ctor() argument
61 d3dformat_to_string(Format), nine_D3DPOOL_to_str(Pool), pSharedHandle); in NineTexture9_ctor()
69 user_assert(!pSharedHandle || pParams->device->ex, D3DERR_INVALIDCALL); in NineTexture9_ctor()
70 user_assert(!pSharedHandle || in NineTexture9_ctor()
93 if (pSharedHandle && Pool == D3DPOOL_DEFAULT) { in NineTexture9_ctor()
94 if (!*pSharedHandle) { in NineTexture9_ctor()
96 *pSharedHandle = (HANDLE)1; /* Wine would keep it NULL */ in NineTexture9_ctor()
97 pSharedHandle = NULL; in NineTexture9_ctor()
152 if (pSharedHandle && *pSharedHandle) { /* Pool == D3DPOOL_SYSTEMMEM */ in NineTexture9_ctor()
153 user_buffer = (void *)*pSharedHandle; in NineTexture9_ctor()
215 if (pSharedHandle && !*pSharedHandle) {/* Pool == D3DPOOL_SYSTEMMEM */ in NineTexture9_ctor()
216 *pSharedHandle = This->surfaces[0]->data; in NineTexture9_ctor()
388 HANDLE *pSharedHandle ) in NineTexture9_new() argument
392 Usage, Format, Pool, pSharedHandle); in NineTexture9_new()