proof-of-concept test renderer

This commit is contained in:
James Seibel
2026-02-23 12:32:14 -06:00
parent 2866aefb90
commit 1bfa93eea3
8 changed files with 324 additions and 2 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ loom {
"-XX:+UseZGC",
"-XX:+ZGenerational"
)
programArgs("--username", "Dev")
programArgs("--username", "Dev", "--renderDebugLabels")
}
server {
server()
@@ -0,0 +1,9 @@
#version 150 core
in vec4 fColor;
out vec4 fragColor;
void main()
{
fragColor = fColor;
}
+12
View File
@@ -0,0 +1,12 @@
{
"pack": {
"pack_format": 64,
"supported_formats": {
"min_inclusive": 64,
"max_inclusive": 90000
},
"description": "Distant Horizons",
"min_format": 64,
"max_format": 90000
}
}