Merge remote-tracking branch 'origin/dev' into dev

This commit is contained in:
mcrcortex
2025-11-07 09:22:12 +10:00
9 changed files with 94 additions and 50 deletions

View File

@@ -187,7 +187,7 @@ void main() {
hash = hash*1231421+123141;
hash ^= hash>>16;
hash = hash * 1827364925 + 123325621;
outColour = vec4(float(hash&15u)/15, float((hash>>4)&15u)/15, float((hash>>8)&15u)/15, 1);
outColour = vec4(float(hash&15u)/15, float((hash>>4)&15u)/15, float((hash>>8)&15u)/15, 0);
#endif
#else

View File

@@ -48,7 +48,7 @@ void main() {
#ifdef DEBUG_RENDER
quadDebug = extractDetail(positionBuffer[gl_BaseInstance]);
quadDebug = uint(gl_VertexID)>>(2+5);
#endif
}