From: Brian Paul Date: Wed, 6 Apr 2011 19:00:14 +0000 (-0600) Subject: mesa: init/release the default texture buffer object X-Git-Tag: mesa-7.11-rc1~1244 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=122275760dcc9dfa6b2e377cae657aeeb121556a;p=platform%2Fupstream%2Fmesa.git mesa: init/release the default texture buffer object --- diff --git a/src/mesa/main/texstate.c b/src/mesa/main/texstate.c index 72f8050..82e69ae 100644 --- a/src/mesa/main/texstate.c +++ b/src/mesa/main/texstate.c @@ -30,6 +30,7 @@ #include "glheader.h" #include "mfeatures.h" +#include "bufferobj.h" #include "colormac.h" #include "colortab.h" #include "context.h" @@ -794,6 +795,10 @@ _mesa_init_texture(struct gl_context *ctx) if (!alloc_proxy_textures( ctx )) return GL_FALSE; + /* GL_ARB_texture_buffer_object */ + _mesa_reference_buffer_object(ctx, &ctx->Texture.BufferObject, + ctx->Shared->NullBufferObj); + return GL_TRUE; } @@ -819,6 +824,9 @@ _mesa_free_texture_data(struct gl_context *ctx) /* Free proxy texture objects */ for (tgt = 0; tgt < NUM_TEXTURE_TARGETS; tgt++) ctx->Driver.DeleteTexture(ctx, ctx->Texture.ProxyTex[tgt]); + + /* GL_ARB_texture_buffer_object */ + _mesa_reference_buffer_object(ctx, &ctx->Texture.BufferObject, NULL); }