diff options
author | Anuj Phogat <[email protected]> | 2016-10-25 11:56:07 -0700 |
---|---|---|
committer | Anuj Phogat <[email protected]> | 2016-11-07 16:13:02 -0800 |
commit | a1bd2f6950f8ab8ab355fa5f7ff3d7bf372eab13 (patch) | |
tree | babc526b231bf0dd39cc8a7dc6442de08db3a043 /src/mesa/main/framebuffer.h | |
parent | 0295c792b4b47865ddf7760ebe2980fc6f7a536b (diff) |
mesa: Add helper function _mesa_is_alpha_to_coverage_enabled()
Signed-off-by: Anuj Phogat <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Ben Widawsky <[email protected]>
Diffstat (limited to 'src/mesa/main/framebuffer.h')
-rw-r--r-- | src/mesa/main/framebuffer.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/framebuffer.h b/src/mesa/main/framebuffer.h index a6adb1c9661..745c1dabf64 100644 --- a/src/mesa/main/framebuffer.h +++ b/src/mesa/main/framebuffer.h @@ -152,4 +152,7 @@ _mesa_is_multisample_enabled(const struct gl_context *ctx); extern bool _mesa_is_alpha_test_enabled(const struct gl_context *ctx); +extern bool +_mesa_is_alpha_to_coverage_enabled(const struct gl_context *ctx); + #endif /* FRAMEBUFFER_H */ |