mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 19:19:55 +00:00
27 lines
529 B
Text
27 lines
529 B
Text
#include "core.h"
|
|
|
|
#ifdef SH_VERTEX_SHADER
|
|
|
|
SH_BEGIN_PROGRAM
|
|
shUniform(float4x4 wvp) @shAutoConstant(wvp, worldviewproj_matrix)
|
|
shInput(float2, uv0)
|
|
shOutput(float2, UV)
|
|
SH_START_PROGRAM
|
|
{
|
|
shOutputPosition = shMatrixMult(wvp, shInputPosition);
|
|
UV = uv0;
|
|
}
|
|
|
|
#else
|
|
|
|
SH_BEGIN_PROGRAM
|
|
shSampler2D(diffuseMap)
|
|
shInput(float2, UV)
|
|
|
|
SH_START_PROGRAM
|
|
{
|
|
// shOutputColor = float4(1.0, 0.0, 0.0, 1.0);
|
|
shOutputColor = shSample(diffuseMap, UV);
|
|
}
|
|
|
|
#endif
|