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.
13 lines
259 B
Plaintext
13 lines
259 B
Plaintext
12 years ago
|
#include "core.h"
|
||
|
#include "watersim_common.h"
|
||
|
|
||
|
SH_BEGIN_PROGRAM
|
||
|
shInput(float2, UV)
|
||
|
shSampler2D(alphaMap)
|
||
|
|
||
|
SH_START_PROGRAM
|
||
|
{
|
||
|
shOutputColour(0) = EncodeHeightmap(1.0);
|
||
|
shOutputColour(0).a = shSample (alphaMap, UV.xy).a;
|
||
|
}
|