Home | History | Annotate | Download | only in nine

Lines Matching refs:pDesc

57                   D3DVOLUME_DESC *pDesc )
63 DBG("This=%p pContainer=%p pDevice=%p pResource=%p Level=%u pDesc=%p\n",
64 This, pContainer, pParams->device, pResource, Level, pDesc);
69 user_assert(!(pDesc->Usage & D3DUSAGE_DYNAMIC) ||
70 (pDesc->Pool != D3DPOOL_MANAGED), D3DERR_INVALIDCALL);
72 assert(pResource || pDesc->Pool != D3DPOOL_DEFAULT);
85 This->desc = *pDesc;
89 This->info.width0 = pDesc->Width;
90 This->info.height0 = pDesc->Height;
91 This->info.depth0 = pDesc->Depth;
99 pDesc->Format,
103 pDesc->Pool == D3DPOOL_SCRATCH);
108 This->stride = util_format_get_stride(This->info.format, pDesc->Width);
111 This->stride, pDesc->Height);
115 pDesc->Format,
122 pDesc->Width);
125 pDesc->Height);
207 D3DVOLUME_DESC *pDesc )
209 user_assert(pDesc != NULL, E_POINTER);
210 *pDesc = This->desc;
544 D3DVOLUME_DESC *pDesc,
548 pContainer, pResource, Level, pDesc);