diff options
author | Samuel Pitoiset <samuel.pitoiset@gmail.com> | 2018-07-05 17:01:23 +0200 |
---|---|---|
committer | Samuel Pitoiset <samuel.pitoiset@gmail.com> | 2018-07-05 17:12:02 +0200 |
commit | 2a3e9c89ff011b49a3107ba4a94e6425e88ab721 (patch) | |
tree | 71fa8ffce6a3578e6062906543745b225ff76819 /src | |
parent | 78d5c1c82a2c437a70edb62c7217d9284cb99b5f (diff) |
radv: fix "error: initializer element is not constant" build error
GCC 4.8 fails to compile with "static const", while GCC 8.1
fails to compile with only "static".
Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/amd/vulkan/radv_cmd_buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/amd/vulkan/radv_cmd_buffer.c b/src/amd/vulkan/radv_cmd_buffer.c index 17385aace1f..50f4aad0ec1 100644 --- a/src/amd/vulkan/radv_cmd_buffer.c +++ b/src/amd/vulkan/radv_cmd_buffer.c @@ -4276,11 +4276,11 @@ static void write_event(struct radv_cmd_buffer *cmd_buffer, MAYBE_UNUSED unsigned cdw_max = radeon_check_space(cmd_buffer->device->ws, cs, 18); /* Flags that only require a top-of-pipe event. */ - static const VkPipelineStageFlags top_of_pipe_flags = + VkPipelineStageFlags top_of_pipe_flags = VK_PIPELINE_STAGE_TOP_OF_PIPE_BIT; /* Flags that only require a post-index-fetch event. */ - static const VkPipelineStageFlags post_index_fetch_flags = + VkPipelineStageFlags post_index_fetch_flags = top_of_pipe_flags | VK_PIPELINE_STAGE_DRAW_INDIRECT_BIT | VK_PIPELINE_STAGE_VERTEX_INPUT_BIT; |