diff options
author | Ilia Mirkin <[email protected]> | 2016-01-18 00:08:24 -0500 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2016-01-29 21:05:46 -0500 |
commit | 688003669469d787847d58572956e9d3fcecaf3c (patch) | |
tree | 4afd17896eef8b6ec4aaf375504b8a9341df67a3 /src/mesa/state_tracker/st_context.h | |
parent | 9d6f9ccf6b7ca7c9d1ac40354d6ae47c130e2024 (diff) |
st/mesa: add support for SSBO binding and GLSL intrinsics
Signed-off-by: Ilia Mirkin <[email protected]>
v1 -> v2: some 80 char reformatting
Diffstat (limited to 'src/mesa/state_tracker/st_context.h')
-rw-r--r-- | src/mesa/state_tracker/st_context.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_context.h b/src/mesa/state_tracker/st_context.h index ee27533912c..9c6980fc425 100644 --- a/src/mesa/state_tracker/st_context.h +++ b/src/mesa/state_tracker/st_context.h @@ -63,6 +63,7 @@ struct u_upload_mgr; #define ST_NEW_TESSEVAL_PROGRAM (1 << 10) #define ST_NEW_SAMPLER_VIEWS (1 << 11) #define ST_NEW_ATOMIC_BUFFER (1 << 12) +#define ST_NEW_STORAGE_BUFFER (1 << 13) struct st_state_flags { |