mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-30 13:40:23 +01:00
get rid of temp write_mono_row_ub() function
This commit is contained in:
parent
647afc3179
commit
e43bc8da7a
2 changed files with 2 additions and 5 deletions
|
|
@ -150,6 +150,7 @@ write_quad_ub(struct softpipe_surface *sps, GLint x, GLint y,
|
|||
xrb->Base.GetRow(ctx, &xrb->Base, 2, x, y + 1, rgba + 2);
|
||||
}
|
||||
|
||||
#if 0
|
||||
static void
|
||||
write_mono_row_ub(struct softpipe_surface *sps, GLuint count, GLint x, GLint y,
|
||||
GLubyte rgba[NUM_CHANNELS])
|
||||
|
|
@ -158,6 +159,7 @@ write_mono_row_ub(struct softpipe_surface *sps, GLuint count, GLint x, GLint y,
|
|||
GET_CURRENT_CONTEXT(ctx);
|
||||
xrb->Base.PutMonoRow(ctx, &xrb->Base, count, x, y, rgba, NULL);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
/**
|
||||
|
|
@ -185,7 +187,6 @@ xmesa_new_surface(GLcontext *ctx, struct xmesa_renderbuffer *xrb)
|
|||
sps->write_quad_f = write_quad_f;
|
||||
sps->write_quad_f_swz = write_quad_f_swz;
|
||||
sps->write_quad_ub = write_quad_ub;
|
||||
sps->write_mono_row_ub = write_mono_row_ub;
|
||||
|
||||
/* Note, the region we allocate doesn't actually have any storage
|
||||
* since we're drawing into an XImage or Pixmap.
|
||||
|
|
|
|||
|
|
@ -73,10 +73,6 @@ struct softpipe_surface {
|
|||
GLint x, GLint y,
|
||||
GLubyte (*rgba)[NUM_CHANNELS] );
|
||||
|
||||
void (*write_mono_row_ub)( struct softpipe_surface *,
|
||||
GLuint count, GLint x, GLint y,
|
||||
GLubyte rgba[NUM_CHANNELS] );
|
||||
|
||||
void (*read_quad_z)(struct softpipe_surface *,
|
||||
GLint x, GLint y, GLuint zzzz[QUAD_SIZE]);
|
||||
void (*write_quad_z)(struct softpipe_surface *,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue