summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/buffers.c
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2013-06-27 18:20:26 -0700
committerKenneth Graunke <kenneth@whitecape.org>2013-06-28 13:35:22 -0700
commitb5305a303bd13f91a00f36f205b767d1bfef2ab5 (patch)
tree6404bd9009332284842d727bc947e90db9d57719 /src/mesa/main/buffers.c
parentf4571640b8b9d158e33cc536abb9eac037560a73 (diff)
downloadexternal_mesa3d-b5305a303bd13f91a00f36f205b767d1bfef2ab5.zip
external_mesa3d-b5305a303bd13f91a00f36f205b767d1bfef2ab5.tar.gz
external_mesa3d-b5305a303bd13f91a00f36f205b767d1bfef2ab5.tar.bz2
mesa: GL_EXT_framebuffer_object is not optional
Every driver left in Mesa enables this extension all the time. There's no reason to let it be optional. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Brian Paul <brianp@vmware.com>
Diffstat (limited to 'src/mesa/main/buffers.c')
-rw-r--r--src/mesa/main/buffers.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/mesa/main/buffers.c b/src/mesa/main/buffers.c
index e80f040..2bdbf41 100644
--- a/src/mesa/main/buffers.c
+++ b/src/mesa/main/buffers.c
@@ -60,7 +60,6 @@ supported_buffer_bitmask(const struct gl_context *ctx,
if (_mesa_is_user_fbo(fb)) {
/* A user-created renderbuffer */
GLuint i;
- ASSERT(ctx->Extensions.EXT_framebuffer_object);
for (i = 0; i < ctx->Const.MaxColorAttachments; i++) {
mask |= (BUFFER_BIT_COLOR0 << i);
}