From 1a1f4496c6aebc3ffcda4a6fc65290b3b5ad8195 Mon Sep 17 00:00:00 2001 From: Kenneth Graunke Date: Fri, 12 Aug 2016 19:07:33 -0700 Subject: [PATCH] mesa: Rename _mesa_BlendBarrierMESA to _mesa_BlendBarrier. Note that _mesa_BlendBarrierMESA is not currently hooked up in the glapi XML, so we can just rename it. We'll hook it up for the KHR_blend_equation_advanced extension shortly. We may as well use the ES 3.2 core name with no suffixes. Signed-off-by: Kenneth Graunke Reviewed-by: Francisco Jerez --- src/mesa/main/barrier.c | 2 +- src/mesa/main/barrier.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mesa/main/barrier.c b/src/mesa/main/barrier.c index 42a5e0f9203..2f5b4515792 100644 --- a/src/mesa/main/barrier.c +++ b/src/mesa/main/barrier.c @@ -110,7 +110,7 @@ _mesa_MemoryBarrierByRegion(GLbitfield barriers) } void GLAPIENTRY -_mesa_BlendBarrierMESA(void) +_mesa_BlendBarrier(void) { GET_CURRENT_CONTEXT(ctx); diff --git a/src/mesa/main/barrier.h b/src/mesa/main/barrier.h index 21dce90d074..d54c02af65b 100644 --- a/src/mesa/main/barrier.h +++ b/src/mesa/main/barrier.h @@ -48,6 +48,6 @@ void GLAPIENTRY _mesa_MemoryBarrierByRegion(GLbitfield barriers); void GLAPIENTRY -_mesa_BlendBarrierMESA(void); +_mesa_BlendBarrier(void); #endif /* BARRIER_H */ -- 2.11.0