Lines Matching refs:pSharedHandle
48 HANDLE *pSharedHandle ) in NineTexture9_ctor() argument
64 d3dformat_to_string(Format), nine_D3DPOOL_to_str(Pool), pSharedHandle); in NineTexture9_ctor()
72 user_assert(!pSharedHandle || pParams->device->ex, D3DERR_INVALIDCALL); in NineTexture9_ctor()
73 user_assert(!pSharedHandle || in NineTexture9_ctor()
96 if (pSharedHandle && Pool == D3DPOOL_DEFAULT) { in NineTexture9_ctor()
97 if (!*pSharedHandle) { in NineTexture9_ctor()
99 *pSharedHandle = (HANDLE)1; /* Wine would keep it NULL */ in NineTexture9_ctor()
100 pSharedHandle = NULL; in NineTexture9_ctor()
160 if (pSharedHandle && *pSharedHandle) { /* Pool == D3DPOOL_SYSTEMMEM */ in NineTexture9_ctor()
161 … user_buffer = nine_wrap_external_pointer(pParams->device->allocator, (void *)*pSharedHandle); in NineTexture9_ctor()
213 if (pSharedHandle && !*pSharedHandle) {/* Pool == D3DPOOL_SYSTEMMEM */ in NineTexture9_ctor()
214 *pSharedHandle = This->surfaces[0]->data; in NineTexture9_ctor()
387 HANDLE *pSharedHandle ) in NineTexture9_new() argument
391 Usage, Format, Pool, pSharedHandle); in NineTexture9_new()