mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-06 06:40:08 +01:00
added GL_PROXY_TEXTURE_RECTANGLE_NV to is_proxy_target()
This commit is contained in:
parent
dd26d02889
commit
27f4484fb7
1 changed files with 2 additions and 3 deletions
|
|
@ -1,5 +1,3 @@
|
|||
/* $Id: teximage.c,v 1.127 2003/04/01 16:41:53 brianp Exp $ */
|
||||
|
||||
/*
|
||||
* Mesa 3-D graphics library
|
||||
* Version: 5.1
|
||||
|
|
@ -453,7 +451,8 @@ is_proxy_target(GLenum target)
|
|||
return (target == GL_PROXY_TEXTURE_1D ||
|
||||
target == GL_PROXY_TEXTURE_2D ||
|
||||
target == GL_PROXY_TEXTURE_3D ||
|
||||
target == GL_PROXY_TEXTURE_CUBE_MAP_ARB);
|
||||
target == GL_PROXY_TEXTURE_CUBE_MAP_ARB ||
|
||||
target == GL_PROXY_TEXTURE_RECTANGLE_NV);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue