summaryrefslogtreecommitdiff
path: root/progs/fp/tri-sin.c
diff options
context:
space:
mode:
Diffstat (limited to 'progs/fp/tri-sin.c')
-rw-r--r--progs/fp/tri-sin.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/progs/fp/tri-sin.c b/progs/fp/tri-sin.c
index d9c5c44c307..f98bfdd25eb 100644
--- a/progs/fp/tri-sin.c
+++ b/progs/fp/tri-sin.c
@@ -40,8 +40,12 @@ static void Init( void )
{
static const char *modulate2D =
"!!ARBfp1.0\n"
+ "TEMP R0; \n"
+ "MUL R0, fragment.color, {3.14}.x; \n"
"MOV result.color, {0.0}.x; \n"
- "COS result.color.y, fragment.color.y; \n"
+ "SIN result.color.x, R0.x; \n"
+ "SIN result.color.y, R0.y; \n"
+ "SIN result.color.z, R0.z; \n"
"END"
;
GLuint modulateProg;