diff options
author | Samuel Pitoiset <[email protected]> | 2017-05-03 11:16:57 +0200 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-05-04 09:51:25 +0200 |
commit | a5f82db3805ff8e96b04e5b35fc566eac2f0a0a8 (patch) | |
tree | 5bc7b6872edf8c11d128b328b2354b9cba5dc014 /src/compiler/glsl/ir.h | |
parent | b546c9d318731b988aa3d8c4e4735cdbb596cfbf (diff) |
glsl: rename image_* qualifiers to memory_*
It doesn't make sense to prefix them with 'image' because
they are called "Memory Qualifiers" and they can be applied
to members of storage buffer blocks.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Andres Gomez <[email protected]>
Diffstat (limited to 'src/compiler/glsl/ir.h')
-rw-r--r-- | src/compiler/glsl/ir.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/compiler/glsl/ir.h b/src/compiler/glsl/ir.h index 9ab4df7219e..5a5729cdbe3 100644 --- a/src/compiler/glsl/ir.h +++ b/src/compiler/glsl/ir.h @@ -827,13 +827,13 @@ public: ir_depth_layout depth_layout:3; /** - * ARB_shader_image_load_store qualifiers. + * Memory qualifiers. */ - unsigned image_read_only:1; /**< "readonly" qualifier. */ - unsigned image_write_only:1; /**< "writeonly" qualifier. */ - unsigned image_coherent:1; - unsigned image_volatile:1; - unsigned image_restrict:1; + unsigned memory_read_only:1; /**< "readonly" qualifier. */ + unsigned memory_write_only:1; /**< "writeonly" qualifier. */ + unsigned memory_coherent:1; + unsigned memory_volatile:1; + unsigned memory_restrict:1; /** * ARB_shader_storage_buffer_object |