mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-16 01:21:17 +00:00
9c74c9629a
# Conflicts: # src/gl/shaders/gl_shader.cpp # src/hwrenderer/textures/hw_material.cpp # src/r_data/gldefs.cpp # wadsrc/static/shaders/glsl/main.fp
8 lines
160 B
GLSL
8 lines
160 B
GLSL
|
|
Material ProcessMaterial()
|
|
{
|
|
Material material;
|
|
material.Base = getTexel(vTexCoord.st);
|
|
material.Normal = ApplyNormalMap(vTexCoord.st);
|
|
return material;
|
|
}
|