etnaviv: hwdb: Add S8 feature

This feature tells if the GPU core supports 8bit stencil.

The bit in the gc_feature_database.h is called REG_RSS8 but lets call it
just S8 to name it more generic.

Signed-off-by: Christian Gmeiner <cgmeiner@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37014>
This commit is contained in:
Christian Gmeiner
2025-08-26 01:00:34 +02:00
committed by Marge Bot
parent 76df6cd321
commit 7028b78252
2 changed files with 2 additions and 0 deletions
+1
View File
@@ -68,6 +68,7 @@ enum etna_feature {
ETNA_FEATURE_NN_XYDP0,
ETNA_FEATURE_YUV420_TILER,
ETNA_FEATURE_MSAA_FRAGMENT_OPERATION,
ETNA_FEATURE_S8,
ETNA_FEATURE_NUM,
};
+1
View File
@@ -110,6 +110,7 @@ etna_query_feature_db(struct etna_core_info *info)
ETNA_FEATURE(NN_XYDP0, NN_XYDP0);
ETNA_FEATURE(MSAA_FRAGMENT_OPERATION, MSAA_FRAGMENT_OPERATION);
ETNA_FEATURE(REG_RSS8, S8);
/* Limits: */
if (info->type == ETNA_CORE_GPU) {