mesa/barrier: remove unused barrier functions

Reviewed-by: Timothy Arceri <tarceri@itsqueeze.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14075>
This commit is contained in:
Dave Airlie 2021-12-06 16:44:20 +10:00 committed by Marge Bot
parent 26bd234d06
commit 2db58c3f89
2 changed files with 0 additions and 16 deletions

View file

@ -31,19 +31,6 @@
#include "context.h"
#include "barrier.h"
static void
_mesa_texture_barrier(struct gl_context *ctx)
{
/* no-op */
}
void
_mesa_init_barrier_functions(struct dd_function_table *driver)
{
driver->TextureBarrier = _mesa_texture_barrier;
}
void GLAPIENTRY
_mesa_TextureBarrierNV(void)
{

View file

@ -35,9 +35,6 @@
struct dd_function_table;
extern void
_mesa_init_barrier_functions(struct dd_function_table *driver);
extern void GLAPIENTRY
_mesa_TextureBarrierNV(void);