diff options
author | Dave Airlie <[email protected]> | 2018-07-18 12:54:30 +1000 |
---|---|---|
committer | Dave Airlie <[email protected]> | 2018-08-01 08:02:27 +1000 |
commit | 452eea140d909db6d10101914dff0e1274acc1e0 (patch) | |
tree | 9b63b79dd0851c2c9329285d669ddf0036e97cc2 /src/gallium/drivers/virgl/virgl_hw.h | |
parent | faa29c0e2449e3d7521bc273d723012b537593df (diff) |
virgl: add initial images support (v2)
v2: add max image samples support
Reviwed-by: Gert Wollny <[email protected]>
Diffstat (limited to 'src/gallium/drivers/virgl/virgl_hw.h')
-rw-r--r-- | src/gallium/drivers/virgl/virgl_hw.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/virgl/virgl_hw.h b/src/gallium/drivers/virgl/virgl_hw.h index 4469515dd12..aa6d8f8fe4b 100644 --- a/src/gallium/drivers/virgl/virgl_hw.h +++ b/src/gallium/drivers/virgl/virgl_hw.h @@ -307,6 +307,9 @@ struct virgl_caps_v2 { uint32_t max_vertex_attrib_stride; uint32_t max_shader_buffer_frag_compute; uint32_t max_shader_buffer_other_stages; + uint32_t max_shader_image_frag_compute; + uint32_t max_shader_image_other_stages; + uint32_t max_image_samples; }; union virgl_caps { |