feat(app): render static meshes from Holtburg LandBlockInfo
This commit is contained in:
parent
cefc689ba8
commit
1375780e14
4 changed files with 232 additions and 0 deletions
9
src/AcDream.App/Rendering/Shaders/mesh.frag
Normal file
9
src/AcDream.App/Rendering/Shaders/mesh.frag
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
#version 430 core
|
||||
in vec2 vTex;
|
||||
out vec4 fragColor;
|
||||
|
||||
uniform sampler2D uDiffuse;
|
||||
|
||||
void main() {
|
||||
fragColor = texture(uDiffuse, vTex);
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue