mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 21:49:56 +00:00
25 lines
505 B
Text
25 lines
505 B
Text
#include "core.h"
|
|
|
|
#ifdef SH_VERTEX_SHADER
|
|
|
|
SH_BEGIN_PROGRAM
|
|
shVertexInput(float2, uv0)
|
|
shOutput(float2, UV)
|
|
shUniform(float4x4, wvp) @shAutoConstant(wvp, worldviewproj_matrix)
|
|
SH_START_PROGRAM
|
|
{
|
|
shOutputPosition = shMatrixMult(wvp, shInputPosition);
|
|
UV = uv0;
|
|
}
|
|
|
|
#else
|
|
|
|
SH_BEGIN_PROGRAM
|
|
shInput(float2, UV)
|
|
shSampler2D(SceneBuffer)
|
|
SH_START_PROGRAM
|
|
{
|
|
shOutputColour(0) = shSample(SceneBuffer, UV);
|
|
}
|
|
|
|
#endif
|