mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
Fix typo.
This commit is contained in:
parent
0b9d7e477a
commit
bd4256acfd
1 changed files with 2 additions and 2 deletions
|
|
@ -49,7 +49,7 @@
|
||||||
(**x)._generic._unknown.Release ((struct gl2_unknown_intf **) (x))
|
(**x)._generic._unknown.Release ((struct gl2_unknown_intf **) (x))
|
||||||
|
|
||||||
static struct gl2_unknown_intf **
|
static struct gl2_unknown_intf **
|
||||||
lookup_handle (GLcontext *ctx, GLhandleARB handle, enum gl2_uuid uuid, const char *function)
|
lookup_handle (GLcontext *ctx, GLhandleARB handle, enum gl2_uiid uiid, const char *function)
|
||||||
{
|
{
|
||||||
struct gl2_unknown_intf **unk;
|
struct gl2_unknown_intf **unk;
|
||||||
|
|
||||||
|
|
@ -67,7 +67,7 @@ lookup_handle (GLcontext *ctx, GLhandleARB handle, enum gl2_uuid uuid, const cha
|
||||||
if (unk == NULL)
|
if (unk == NULL)
|
||||||
_mesa_error (ctx, GL_INVALID_VALUE, function);
|
_mesa_error (ctx, GL_INVALID_VALUE, function);
|
||||||
else {
|
else {
|
||||||
unk = (**unk).QueryInterface (unk, uuid);
|
unk = (**unk).QueryInterface (unk, uiid);
|
||||||
if (unk == NULL)
|
if (unk == NULL)
|
||||||
_mesa_error (ctx, GL_INVALID_OPERATION, function);
|
_mesa_error (ctx, GL_INVALID_OPERATION, function);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue