mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 04:48:08 +02:00
mesa api_exec: add comment regarding GetPointerv & CORE profiles
GetPointerv was de-deprecated in 893ddb. Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Paul Berry <stereotype441@gmail.com>
This commit is contained in:
parent
84b4372132
commit
86d5c28580
1 changed files with 4 additions and 0 deletions
|
|
@ -346,6 +346,10 @@ _mesa_create_exec_table(struct gl_context *ctx)
|
|||
SET_InterleavedArrays(exec, _mesa_InterleavedArrays);
|
||||
}
|
||||
if (ctx->API != API_OPENGLES2) {
|
||||
/* Note glGetPointerv is deprecated in GL CORE 3.1 through 4.2, but
|
||||
* was re-added in GL CORE 4.3. We will just keep the function
|
||||
* around in all GL CORE contexts.
|
||||
*/
|
||||
SET_GetPointerv(exec, _mesa_GetPointerv);
|
||||
}
|
||||
SET_IsTexture(exec, _mesa_IsTexture);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue