diff options
author | Francisco Jerez <[email protected]> | 2018-02-12 14:23:25 -0800 |
---|---|---|
committer | Francisco Jerez <[email protected]> | 2018-02-24 15:28:36 -0800 |
commit | d0bef79f12aca8d3db323cc49881100be16905fb (patch) | |
tree | b99ffa15de5e831866e6df8a80e1618efb5dc5d8 /src/mesa/main/dd.h | |
parent | 27c829da28ab3cfac0195d02ffb13afa8fe0e23d (diff) |
mesa: Rename dd_function_table::BlendBarrier to match latest EXT spec.
This GL entry point was renamed to glFramebufferFetchBarrier() in the
EXT extension on request from Khronos members. Update the Mesa
codebase to match the latest spec.
Reviewed-by: Plamena Manolova <[email protected]>
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 7a39f939c97..3e6a0418a2e 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -963,15 +963,15 @@ struct dd_function_table { /** @} */ /** - * GL_MESA_shader_framebuffer_fetch_non_coherent rendering barrier. + * GL_EXT_shader_framebuffer_fetch_non_coherent rendering barrier. * * On return from this function any framebuffer contents written by * previous draw commands are guaranteed to be visible from subsequent * fragment shader invocations using the - * MESA_shader_framebuffer_fetch_non_coherent interface. + * EXT_shader_framebuffer_fetch_non_coherent interface. */ /** @{ */ - void (*BlendBarrier)(struct gl_context *ctx); + void (*FramebufferFetchBarrier)(struct gl_context *ctx); /** @} */ /** |