diff options
author | Jordan Justen <[email protected]> | 2012-07-19 11:27:16 -0700 |
---|---|---|
committer | Jordan Justen <[email protected]> | 2012-07-30 16:18:57 -0700 |
commit | 09714c09a40501d82823e42f7461d7b8d7bf11c0 (patch) | |
tree | 144610e22885309e431706173799f044d86255c7 /src/mesa/main/vtxfmt.c | |
parent | 3d284dcba6f692ce268c9a2178a30e7a308b2cfc (diff) |
mesa: add support for using API_OPENGL_CORE
Signed-off-by: Jordan Justen <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Eric Anholt <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/vtxfmt.c')
-rw-r--r-- | src/mesa/main/vtxfmt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/vtxfmt.c b/src/mesa/main/vtxfmt.c index bf7a54c0ad6..bc925b0db7b 100644 --- a/src/mesa/main/vtxfmt.c +++ b/src/mesa/main/vtxfmt.c @@ -209,7 +209,7 @@ install_vtxfmt( struct _glapi_table *tab, const GLvertexformat *vfmt ) void _mesa_install_exec_vtxfmt(struct gl_context *ctx, const GLvertexformat *vfmt) { - if (ctx->API == API_OPENGL) + if (_mesa_is_desktop_gl(ctx)) install_vtxfmt( ctx->Exec, vfmt ); } @@ -221,7 +221,7 @@ _mesa_install_exec_vtxfmt(struct gl_context *ctx, const GLvertexformat *vfmt) void _mesa_install_save_vtxfmt(struct gl_context *ctx, const GLvertexformat *vfmt) { - if (ctx->API == API_OPENGL) + if (_mesa_is_desktop_gl(ctx)) install_vtxfmt( ctx->Save, vfmt ); } |