Browse Source

replace Proxy1D/2D/etc fields with ProxyTex[] array

tags/mesa_7_1_rc1
Brian 18 years ago
parent
commit
09867b53a9
1 changed files with 1 additions and 10 deletions
  1. 1
    10
      src/mesa/main/mtypes.h

+ 1
- 10
src/mesa/main/mtypes.h View File

@@ -1576,17 +1576,8 @@ struct gl_texture_attrib

struct gl_texture_unit Unit[MAX_TEXTURE_UNITS];

#if 0
struct gl_texture_object *Proxy1D;
struct gl_texture_object *Proxy2D;
struct gl_texture_object *Proxy3D;
struct gl_texture_object *ProxyCubeMap;
struct gl_texture_object *ProxyRect;
struct gl_texture_object *Proxy1DArray;
struct gl_texture_object *Proxy2DArray;
#else
/** Proxy texture objects */
struct gl_texture_object *ProxyTex[NUM_TEXTURE_TARGETS];
#endif

/** GL_EXT_shared_texture_palette */
GLboolean SharedPalette;

Loading…
Cancel
Save