summaryrefslogtreecommitdiff
path: root/lib/mesa/src/broadcom/common/v3d_device_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'lib/mesa/src/broadcom/common/v3d_device_info.h')
-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