X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fglsl%2Fspirvconstants.h;h=64daa9ff01a58f60a92b2ca54669f1f9ac026b73;hb=c585c065b7831eb6ae05e48edc36953d2534db2b;hp=3d424844e6d6975bf59e9013e08dc536a4a00a44;hpb=ece3438c6a1630ada39cc01ae3d54b27aacdd663;p=libs%2Fgl.git diff --git a/source/glsl/spirvconstants.h b/source/glsl/spirvconstants.h index 3d424844..64daa9ff 100644 --- a/source/glsl/spirvconstants.h +++ b/source/glsl/spirvconstants.h @@ -66,6 +66,9 @@ enum SpirVOpcode OP_IMAGE_FETCH = 95, OP_IMAGE = 100, OP_IMAGE_QUERY_SIZE_LOD = 103, + OP_IMAGE_QUERY_LOD = 105, + OP_IMAGE_QUERY_LEVELS = 106, + OP_IMAGE_QUERY_SAMPLES = 107, OP_CONVERT_F_TO_U = 109, OP_CONVERT_F_TO_S = 110, OP_CONVERT_S_TO_F = 111, @@ -167,6 +170,8 @@ enum SpirVCapability enum SpirVExecutionMode { + EXEC_INVOCATIONS = 0, + EXEC_ORIGIN_UPPER_LEFT = 7, EXEC_ORIGIN_LOWER_LEFT = 8, EXEC_INPUT_POINTS = 19, EXEC_INPUT_LINES = 20, @@ -186,7 +191,8 @@ enum SpirVStorageClass STORAGE_UNIFORM = 2, STORAGE_OUTPUT = 3, STORAGE_PRIVATE = 6, - STORAGE_FUNCTION = 7 + STORAGE_FUNCTION = 7, + STORAGE_PUSH_CONSTANT = 9 }; enum SpirVDecoration