mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
mesa: Implement glFramebufferFetchBarrierEXT entry point.
Reviewed-by: Plamena Manolova <plamena.manolova@intel.com>
This commit is contained in:
parent
e4124f9bc1
commit
378e918e28
3 changed files with 24 additions and 2 deletions
|
|
@ -127,8 +127,7 @@ _mesa_BlendBarrier(void)
|
|||
{
|
||||
GET_CURRENT_CONTEXT(ctx);
|
||||
|
||||
if (!ctx->Extensions.EXT_shader_framebuffer_fetch_non_coherent &&
|
||||
!ctx->Extensions.KHR_blend_equation_advanced) {
|
||||
if (!ctx->Extensions.KHR_blend_equation_advanced) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glBlendBarrier(not supported)");
|
||||
return;
|
||||
|
|
@ -136,3 +135,17 @@ _mesa_BlendBarrier(void)
|
|||
|
||||
ctx->Driver.FramebufferFetchBarrier(ctx);
|
||||
}
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_FramebufferFetchBarrierEXT(void)
|
||||
{
|
||||
GET_CURRENT_CONTEXT(ctx);
|
||||
|
||||
if (!ctx->Extensions.EXT_shader_framebuffer_fetch_non_coherent) {
|
||||
_mesa_error(ctx, GL_INVALID_OPERATION,
|
||||
"glFramebufferFetchBarrierEXT(not supported)");
|
||||
return;
|
||||
}
|
||||
|
||||
ctx->Driver.FramebufferFetchBarrier(ctx);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -53,4 +53,7 @@ _mesa_MemoryBarrierByRegion(GLbitfield barriers);
|
|||
void GLAPIENTRY
|
||||
_mesa_BlendBarrier(void);
|
||||
|
||||
void GLAPIENTRY
|
||||
_mesa_FramebufferFetchBarrierEXT(void);
|
||||
|
||||
#endif /* BARRIER_H */
|
||||
|
|
|
|||
|
|
@ -1023,6 +1023,9 @@ const struct function common_desktop_functions_possible[] = {
|
|||
/* GL_ARB_gl_spirv */
|
||||
{ "glSpecializeShaderARB", 45, -1 },
|
||||
|
||||
/* GL_EXT_shader_framebuffer_fetch_non_coherent */
|
||||
{ "glFramebufferFetchBarrierEXT", 20, -1 },
|
||||
|
||||
{ NULL, 0, -1 }
|
||||
};
|
||||
|
||||
|
|
@ -2446,6 +2449,9 @@ const struct function gles2_functions_possible[] = {
|
|||
{ "glGetQueryObjectui64vEXT", 20, -1 },
|
||||
{ "glQueryCounterEXT", 20, -1 },
|
||||
|
||||
/* GL_EXT_shader_framebuffer_fetch_non_coherent */
|
||||
{ "glFramebufferFetchBarrierEXT", 20, -1 },
|
||||
|
||||
{ NULL, 0, -1 }
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue