From 0870859e3d3658ae7cc69201cfc4bbe41d93fbf5 Mon Sep 17 00:00:00 2001 From: Niklas Haas Date: Sat, 3 Feb 2018 17:07:55 +0100 Subject: vo_gpu: add RA_CAP for gl_NumWorkGroups SPIRV-Cross doesn't support this for the time being. It's possible this could go away again at a later date. --- video/out/gpu/ra.h | 1 + 1 file changed, 1 insertion(+) (limited to 'video/out/gpu') diff --git a/video/out/gpu/ra.h b/video/out/gpu/ra.h index 34f3fb9b5c..f1037e45c3 100644 --- a/video/out/gpu/ra.h +++ b/video/out/gpu/ra.h @@ -54,6 +54,7 @@ enum { RA_CAP_GATHER = 1 << 9, // supports textureGather in GLSL RA_CAP_FRAGCOORD = 1 << 10, // supports reading from gl_FragCoord RA_CAP_PARALLEL_COMPUTE = 1 << 11, // supports parallel compute shaders + RA_CAP_NUM_GROUPS = 1 << 12, // supports gl_NumWorkGroups }; enum ra_ctype { -- cgit v1.2.3