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/barrier.c | |
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/barrier.c')
-rw-r--r-- | src/mesa/main/barrier.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/barrier.c b/src/mesa/main/barrier.c index 5284f28dc02..2c8194e6eba 100644 --- a/src/mesa/main/barrier.c +++ b/src/mesa/main/barrier.c @@ -134,5 +134,5 @@ _mesa_BlendBarrier(void) return; } - ctx->Driver.BlendBarrier(ctx); + ctx->Driver.FramebufferFetchBarrier(ctx); } |