You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
464 B
Plaintext
25 lines
464 B
Plaintext
12 years ago
|
#include "core.h"
|
||
|
|
||
|
#ifdef SH_VERTEX_SHADER
|
||
|
|
||
|
SH_BEGIN_PROGRAM
|
||
|
shUniform(float4x4, wvp) @shAutoConstant(wvp, worldviewproj_matrix)
|
||
|
|
||
|
SH_START_PROGRAM
|
||
|
{
|
||
|
shOutputPosition = shMatrixMult(wvp, shInputPosition);
|
||
|
}
|
||
|
|
||
|
#else
|
||
|
|
||
|
SH_BEGIN_PROGRAM
|
||
|
shUniform(float4, colour) @shAutoConstant(colour, custom, 1)
|
||
|
|
||
|
SH_START_PROGRAM
|
||
|
{
|
||
|
shOutputColour(0) = colour;
|
||
|
//shOutputColour(0) = float4(1,0,0,1);
|
||
|
}
|
||
|
|
||
|
#endif
|