diff options
author | Brian Paul <[email protected]> | 2008-06-12 16:55:28 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-06-12 16:58:04 -0600 |
commit | e961a5da77cbcdb0e32400ec707c16fcfe9d7083 (patch) | |
tree | 29f3f08f88d8780446249933ac7f319a21c10287 /src/mesa/main/context.c | |
parent | 5b51cc020efc5519bc7cc34f6fcb4138eab76e0a (diff) |
mesa: add some #if FEATURE_x tests
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index d9758145928..8f22f6bb785 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -144,9 +144,7 @@ #include "vtxfmt.h" #include "glapi/glthread.h" #include "glapi/glapioffsets.h" -#if FEATURE_NV_vertex_program || FEATURE_NV_fragment_program #include "shader/program.h" -#endif #include "shader/shader_api.h" #include "shader/atifragshader.h" #if _HAVE_FULL_GL @@ -622,6 +620,7 @@ delete_program_cb(GLuint id, void *data, void *userData) ctx->Driver.DeleteProgram(ctx, prog); } +#if FEATURE_ATI_fragment_shader /** * Callback for deleting an ATI fragment shader object. * Called by _mesa_HashDeleteAll(). @@ -633,6 +632,7 @@ delete_fragshader_cb(GLuint id, void *data, void *userData) GLcontext *ctx = (GLcontext *) userData; _mesa_delete_ati_fragment_shader(ctx, shader); } +#endif /** * Callback for deleting a buffer object. Called by _mesa_HashDeleteAll(). |