1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-11-06 18:25:21 +01:00

Introduce array textures for node rendering (#16574)

This commit is contained in:
sfan5
2025-11-01 17:21:41 +01:00
committed by GitHub
parent 1ead48c58b
commit de5ef4ca29
31 changed files with 777 additions and 187 deletions

View File

@@ -9,6 +9,7 @@ enum E_VERTEX_ATTRIBUTES
EVA_POSITION = 0,
EVA_NORMAL,
EVA_COLOR,
EVA_AUX,
EVA_TCOORD0,
EVA_TCOORD1,
EVA_TANGENT,
@@ -21,6 +22,7 @@ const char *const sBuiltInVertexAttributeNames[] = {
"inVertexPosition",
"inVertexNormal",
"inVertexColor",
"inVertexAux",
"inTexCoord0",
"inTexCoord1",
"inVertexTangent",