mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 09:28:07 +02:00
mesa: remove obsolete PutRow, etc assignments
This commit is contained in:
parent
d65bbfa947
commit
0d2f0c8bb8
1 changed files with 0 additions and 17 deletions
|
|
@ -32,17 +32,6 @@
|
|||
#include "renderbuffer.h"
|
||||
|
||||
|
||||
/**
|
||||
* Default GetPointer routine. Always return NULL to indicate that
|
||||
* direct buffer access is not supported.
|
||||
*/
|
||||
static void *
|
||||
nop_get_pointer(struct gl_context *ctx, struct gl_renderbuffer *rb, GLint x, GLint y)
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Initialize the fields of a gl_renderbuffer to default values.
|
||||
*/
|
||||
|
|
@ -73,12 +62,6 @@ _mesa_init_renderbuffer(struct gl_renderbuffer *rb, GLuint name)
|
|||
* all over the drivers.
|
||||
*/
|
||||
rb->Wrapped = rb;
|
||||
|
||||
rb->GetPointer = nop_get_pointer;
|
||||
rb->GetRow = NULL;
|
||||
rb->GetValues = NULL;
|
||||
rb->PutRow = NULL;
|
||||
rb->PutValues = NULL;
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue