summaryrefslogtreecommitdiff
path: root/lib/mesa/src/broadcom/common
diff options
context:
space:
mode:
authorJonathan Gray <jsg@cvs.openbsd.org>2019-01-29 11:52:33 +0000
committerJonathan Gray <jsg@cvs.openbsd.org>2019-01-29 11:52:33 +0000
commit37bbf6a1792773f11c15a4da1588a7520ee2fb4e (patch)
tree64944d4aa665a1e479cfc004e446593062254550 /lib/mesa/src/broadcom/common
parent6b139c2063623e9310025247cd966490b9aa57ea (diff)
Merge Mesa 18.3.2
Diffstat (limited to 'lib/mesa/src/broadcom/common')
-rw-r--r--lib/mesa/src/broadcom/common/v3d_device_info.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/mesa/src/broadcom/common/v3d_device_info.h b/lib/mesa/src/broadcom/common/v3d_device_info.h
index 5685c7a21..b0a2a0215 100644
--- a/lib/mesa/src/broadcom/common/v3d_device_info.h
+++ b/lib/mesa/src/broadcom/common/v3d_device_info.h
@@ -27,13 +27,14 @@
#include <stdint.h>
/**
- * Struct for tracking features of the V3D chip. This is where we'll store
- * boolean flags for features in a specific version, but for now it's just the
- * version
+ * Struct for tracking features of the V3D chip across driver and compiler.
*/
struct v3d_device_info {
/** Simple V3D version: major * 10 + minor */
uint8_t ver;
+
+ /** Size of the VPM, in bytes. */
+ int vpm_size;
};
#endif