diff options
author | David Riley <[email protected]> | 2019-06-12 17:16:35 -0700 |
---|---|---|
committer | David Riley <[email protected]> | 2019-06-19 07:28:47 -0700 |
commit | 11e74daae5eb51520cc43efa817a4435516bfb8a (patch) | |
tree | 06498deab73587092842e62797b35f23d711a151 /src/gallium | |
parent | bc62673dce983efa595f0934102b310fbfe69cf4 (diff) |
virgl: Support VIRGL_BIND_SHARED
Support a new virgl bind type for shared buffers.
Signed-off-by: David Riley <[email protected]>
Reviewed-By: Gert Wollny <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/virgl/virgl_hw.h | 1 | ||||
-rw-r--r-- | src/gallium/drivers/virgl/virgl_resource.h | 2 |
2 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 7f300e5cd15..3104e1bb1b1 100644 --- a/src/gallium/drivers/virgl/virgl_hw.h +++ b/src/gallium/drivers/virgl/virgl_hw.h @@ -277,6 +277,7 @@ enum virgl_formats { * are only read by the host. */ #define VIRGL_BIND_STAGING (1 << 19) +#define VIRGL_BIND_SHARED (1 << 20) struct virgl_caps_bool_set1 { unsigned indep_blend_enable:1; diff --git a/src/gallium/drivers/virgl/virgl_resource.h b/src/gallium/drivers/virgl/virgl_resource.h index c3374fbef70..f9439a9489f 100644 --- a/src/gallium/drivers/virgl/virgl_resource.h +++ b/src/gallium/drivers/virgl/virgl_resource.h @@ -152,6 +152,8 @@ static inline unsigned pipe_to_virgl_bind(const struct virgl_screen *vs, } if (pbind & PIPE_BIND_SCANOUT) outbind |= VIRGL_BIND_SCANOUT; + if (pbind & PIPE_BIND_SHARED) + outbind |= VIRGL_BIND_SHARED; if (pbind & PIPE_BIND_SHADER_BUFFER) outbind |= VIRGL_BIND_SHADER_BUFFER; if (pbind & PIPE_BIND_QUERY_BUFFER) |