summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--debian/changelog4
-rw-r--r--src/mesa/drivers/directfb/idirectfbgl_mesa.c8
2 files changed, 3 insertions, 9 deletions
diff --git a/debian/changelog b/debian/changelog
index 72b653dea76..9f33265ecfb 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -4,8 +4,10 @@ mesa (6.5.0-0.1) experimental; urgency=low
* Increment libdrm-dev build-dep to 2.0.1
* Re-Add s390 and m68k to the USE_IEEE test in src/mesa/main/imports.h.
I need to submit this upstream.
+ * Remove set_buffer function from idirectfbgl_mesa.c in directfb driver.
+ Also remove the line that sets SetBuffer to it. Fixes FTBFS.
- -- David Nusinow <[email protected]> Thu, 6 Apr 2006 21:49:58 -0400
+ -- David Nusinow <[email protected]> Thu, 6 Apr 2006 22:21:37 -0400
mesa (6.4.1-0.4) unstable; urgency=low
diff --git a/src/mesa/drivers/directfb/idirectfbgl_mesa.c b/src/mesa/drivers/directfb/idirectfbgl_mesa.c
index 1c481af3f2a..e8ed192be3e 100644
--- a/src/mesa/drivers/directfb/idirectfbgl_mesa.c
+++ b/src/mesa/drivers/directfb/idirectfbgl_mesa.c
@@ -310,13 +310,6 @@ set_viewport( GLcontext *ctx, GLint x, GLint y, GLsizei w, GLsizei h )
_mesa_ResizeBuffersMESA();
}
-/* required but not used */
-static void
-set_buffer( GLcontext *ctx, GLframebuffer *buffer, GLuint bufferBit )
-{
- return;
-}
-
static void
delete_renderbuffer( struct gl_renderbuffer *render )
{
@@ -562,7 +555,6 @@ dfb_mesa_create_context( GLcontext *context,
_swsetup_Wakeup( context );
swdd = _swrast_GetDeviceDriverReference( context );
- swdd->SetBuffer = set_buffer;
_mesa_init_renderbuffer( &data->render, 0 );
data->render.InternalFormat = GL_RGBA;