mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 13:58:04 +02:00
mesa: Drop unused _mesa_init_drawtex_dispatch()
This commit is contained in:
parent
1904ba7936
commit
12c46b15d7
2 changed files with 0 additions and 23 deletions
|
|
@ -130,19 +130,4 @@ _mesa_DrawTexxv(const GLfixed *coords)
|
|||
(GLfloat) coords[4] / 65536.0f);
|
||||
}
|
||||
|
||||
|
||||
void
|
||||
_mesa_init_drawtex_dispatch(struct _glapi_table *disp)
|
||||
{
|
||||
SET_DrawTexfOES(disp, _mesa_DrawTexf);
|
||||
SET_DrawTexfvOES(disp, _mesa_DrawTexfv);
|
||||
SET_DrawTexiOES(disp, _mesa_DrawTexi);
|
||||
SET_DrawTexivOES(disp, _mesa_DrawTexiv);
|
||||
SET_DrawTexsOES(disp, _mesa_DrawTexs);
|
||||
SET_DrawTexsvOES(disp, _mesa_DrawTexsv);
|
||||
SET_DrawTexxOES(disp, _mesa_DrawTexx);
|
||||
SET_DrawTexxvOES(disp, _mesa_DrawTexxv);
|
||||
}
|
||||
|
||||
|
||||
#endif /* FEATURE_OES_draw_texture */
|
||||
|
|
|
|||
|
|
@ -59,18 +59,10 @@ _mesa_DrawTexx(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height);
|
|||
extern void GLAPIENTRY
|
||||
_mesa_DrawTexxv(const GLfixed *coords);
|
||||
|
||||
extern void
|
||||
_mesa_init_drawtex_dispatch(struct _glapi_table *disp);
|
||||
|
||||
#else /* FEATURE_OES_draw_texture */
|
||||
|
||||
#define _MESA_INIT_DRAWTEX_FUNCTIONS(driver, impl) do { } while (0)
|
||||
|
||||
static INLINE void
|
||||
_mesa_init_drawtex_dispatch(struct _glapi_table *disp)
|
||||
{
|
||||
}
|
||||
|
||||
#endif /* FEATURE_OES_draw_texture */
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue