mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 18:58:10 +02:00
put back missing Driver.PolygonMode call (bug 9578)
This commit is contained in:
parent
dfabf96607
commit
96c5db5f7a
1 changed files with 3 additions and 0 deletions
|
|
@ -166,6 +166,9 @@ _mesa_PolygonMode( GLenum face, GLenum mode )
|
|||
_mesa_error( ctx, GL_INVALID_ENUM, "glPolygonMode(face)" );
|
||||
return;
|
||||
}
|
||||
|
||||
if (ctx->Driver.PolygonMode)
|
||||
ctx->Driver.PolygonMode(ctx, face, mode);
|
||||
}
|
||||
|
||||
#if _HAVE_FULL_GL
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue