From: Timothy Arceri Date: Wed, 14 Jun 2017 05:48:45 +0000 (+1000) Subject: mesa: add PackedDriverUniformStorage const X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b13b9eb432a3b67efb29ca25c3e244b467c3c4af;p=mesa.git mesa: add PackedDriverUniformStorage const Will be used to determine whether to take packing code paths or not. Reviewed-by: Nicolai Hähnle Reviewed-by: Marek Olšák --- diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 5ee27d9977f..08db8062ec8 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -4132,6 +4132,9 @@ struct gl_constants /** GL_ARB_get_program_binary */ GLuint NumProgramBinaryFormats; + + /** Is the drivers uniform storage packed or padded to 16 bytes. */ + bool PackedDriverUniformStorage; };