vc4: Add debug dumping of MSAA surfaces.
[mesa.git] / src / gallium / drivers / vc4 / kernel / vc4_packet.h
index 9c12d331f618503a286e478190614c0c4f4137fd..8e4fd364ece8e611c7feb3f881f9aaae2ad5902c 100644 (file)
@@ -123,6 +123,8 @@ enum vc4_packet {
 
 /* Number of multisamples supported. */
 #define VC4_MAX_SAMPLES                                                        4
+/* Size of a full resolution color or Z tile buffer load/store. */
+#define VC4_TILE_BUFFER_SIZE                   (64 * 64 * 4)
 
 #define VC4_MASK(high, low) (((1 << ((high) - (low) + 1)) - 1) << (low))
 /* Using the GNU statement expression extension */