summaryrefslogtreecommitdiffstats
path: root/src/mesa/main
diff options
context:
space:
mode:
authorMarek Olšák <[email protected]>2017-05-15 16:30:30 +0200
committerMarek Olšák <[email protected]>2017-05-17 20:28:44 +0200
commitd02d8ea8b67f8499fe8f19b36d3aff5cd99c1885 (patch)
treed33fe5d5eec92490b7ff574f4715637c0bd7a11a /src/mesa/main
parent50189379fa6b2b8f30b2f41acfacf9cad1ea2523 (diff)
mesa: add gl_constants::AllowMappedBuffersDuringExecution
for skipping mapped-buffer checking in every GL draw call Reviewed-by: Nicolai Hähnle <[email protected]>
Diffstat (limited to 'src/mesa/main')
-rw-r--r--src/mesa/main/mtypes.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h
index 28d3d948fcd..efc69202540 100644
--- a/src/mesa/main/mtypes.h
+++ b/src/mesa/main/mtypes.h
@@ -3908,6 +3908,9 @@ struct gl_constants
/** Used as an input for sha1 generation in the on-disk shader cache */
unsigned char *dri_config_options_sha1;
+
+ /** When drivers are OK with mapped buffers during draw and other calls. */
+ bool AllowMappedBuffersDuringExecution;
};