mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-19 12:48:30 +02:00
st/nine: Silent warnings with guid_str
In non-debug build, the variables are unused, and thus trigger a compilation warning. Signed-off-by: Axel Davy <axel.davy@ens.fr>
This commit is contained in:
parent
2cd8622fb3
commit
b2f17e5f62
3 changed files with 12 additions and 0 deletions
|
|
@ -78,6 +78,8 @@ NineUnknown_QueryInterface( struct NineUnknown *This,
|
|||
DBG("This=%p riid=%p id=%s ppvObject=%p\n",
|
||||
This, riid, riid ? GUID_sprintf(guid_str, riid) : "", ppvObject);
|
||||
|
||||
(void)guid_str;
|
||||
|
||||
if (!ppvObject) return E_POINTER;
|
||||
|
||||
do {
|
||||
|
|
@ -164,6 +166,8 @@ NineUnknown_SetPrivateData( struct NineUnknown *This,
|
|||
DBG("This=%p GUID=%s pData=%p SizeOfData=%u Flags=%x\n",
|
||||
This, GUID_sprintf(guid_str, refguid), pData, SizeOfData, Flags);
|
||||
|
||||
(void)guid_str;
|
||||
|
||||
if (Flags & D3DSPD_IUNKNOWN)
|
||||
user_assert(SizeOfData == sizeof(IUnknown *), D3DERR_INVALIDCALL);
|
||||
|
||||
|
|
@ -213,6 +217,8 @@ NineUnknown_GetPrivateData( struct NineUnknown *This,
|
|||
DBG("This=%p GUID=%s pData=%p pSizeOfData=%p\n",
|
||||
This, GUID_sprintf(guid_str, refguid), pData, pSizeOfData);
|
||||
|
||||
(void)guid_str;
|
||||
|
||||
header = util_hash_table_get(This->pdata, refguid);
|
||||
if (!header) { return D3DERR_NOTFOUND; }
|
||||
|
||||
|
|
@ -243,6 +249,8 @@ NineUnknown_FreePrivateData( struct NineUnknown *This,
|
|||
|
||||
DBG("This=%p GUID=%s\n", This, GUID_sprintf(guid_str, refguid));
|
||||
|
||||
(void)guid_str;
|
||||
|
||||
header = util_hash_table_get(This->pdata, refguid);
|
||||
if (!header)
|
||||
return D3DERR_NOTFOUND;
|
||||
|
|
|
|||
|
|
@ -285,6 +285,8 @@ NineSurface9_GetContainer( struct NineSurface9 *This,
|
|||
DBG("This=%p riid=%p id=%s ppContainer=%p\n",
|
||||
This, riid, riid ? GUID_sprintf(guid_str, riid) : "", ppContainer);
|
||||
|
||||
(void)guid_str;
|
||||
|
||||
if (!ppContainer) return E_POINTER;
|
||||
|
||||
/* Return device for OffscreenPlainSurface, DepthStencilSurface and RenderTarget */
|
||||
|
|
|
|||
|
|
@ -166,6 +166,8 @@ NineVolume9_GetContainer( struct NineVolume9 *This,
|
|||
DBG("This=%p riid=%p id=%s ppContainer=%p\n",
|
||||
This, riid, riid ? GUID_sprintf(guid_str, riid) : "", ppContainer);
|
||||
|
||||
(void)guid_str;
|
||||
|
||||
if (!NineUnknown(This)->container)
|
||||
return E_NOINTERFACE;
|
||||
return NineUnknown_QueryInterface(NineUnknown(This)->container, riid, ppContainer);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue