diff options
author | Chia-I Wu <[email protected]> | 2019-06-24 10:47:59 -0700 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2019-06-25 12:01:45 -0700 |
commit | 74786b3aa3e30d7920121e03914d5802e46d6c6c (patch) | |
tree | 0d878c191388efe0db1ccdc05325d7668b518a54 /src/gallium/drivers/virgl/virgl_screen.c | |
parent | e93d918b65ecd30b6973dd38b04b5c4324fd53de (diff) |
virgl: add VIRGL_DEBUG_XFER
When set, do as requested and skip any transfer optimization.
Signed-off-by: Chia-I Wu <[email protected]>
Reviewed-By: Gert Wollny <[email protected]>
Reviewed-By: Alexandros Frantzis <[email protected]>
Diffstat (limited to 'src/gallium/drivers/virgl/virgl_screen.c')
-rw-r--r-- | src/gallium/drivers/virgl/virgl_screen.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/virgl/virgl_screen.c b/src/gallium/drivers/virgl/virgl_screen.c index 08e7fbe8b54..9291c97906f 100644 --- a/src/gallium/drivers/virgl/virgl_screen.c +++ b/src/gallium/drivers/virgl/virgl_screen.c @@ -46,6 +46,7 @@ static const struct debug_named_value debug_options[] = { { "emubgra", VIRGL_DEBUG_EMULATE_BGRA, "Enable tweak to emulate BGRA as RGBA on GLES hosts"}, { "bgraswz", VIRGL_DEBUG_BGRA_DEST_SWIZZLE, "Enable tweak to swizzle emulated BGRA on GLES hosts" }, { "sync", VIRGL_DEBUG_SYNC, "Sync after every flush" }, + { "xfer", VIRGL_DEBUG_XFER, "Do not optimize for transfers" }, DEBUG_NAMED_VALUE_END }; DEBUG_GET_ONCE_FLAGS_OPTION(virgl_debug, "VIRGL_DEBUG", debug_options, 0) |