From 8598f550916449b99351a51e2a20e4c4cff021d3 Mon Sep 17 00:00:00 2001 From: Brian Date: Wed, 18 Apr 2007 09:30:07 -0600 Subject: glean glsl test now does over 150 tests --- docs/shading.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/shading.html') diff --git a/docs/shading.html b/docs/shading.html index fd96a41e85..3a10f1b0ce 100644 --- a/docs/shading.html +++ b/docs/shading.html @@ -294,7 +294,7 @@ A new Glean test has been create to exercise the GLSL compiler.

-The glsl1 test runs over 130 sub-tests to check that the language +The glsl1 test runs over 150 sub-tests to check that the language features and built-in functions work properly. This test should be run frequently while working on the compiler to catch regressions. -- cgit v1.2.3 From ba3d384e94faaedd4b1e0a90c1a765452bf594f3 Mon Sep 17 00:00:00 2001 From: Brian Date: Thu, 19 Apr 2007 14:24:29 -0600 Subject: dFdx(), etc. don't work yet --- docs/shading.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/shading.html') diff --git a/docs/shading.html b/docs/shading.html index 3a10f1b0ce..64ec9990d0 100644 --- a/docs/shading.html +++ b/docs/shading.html @@ -44,6 +44,7 @@ in Mesa:

  • Comparison of user-defined structs
  • Linking of multiple shaders is not supported
  • gl_ClipVertex +
  • The derivative functions such as dFdx() are not implemented

    -- cgit v1.2.3 From fc3d6bd3519eac28d071ad6c3cfdf739a71921bb Mon Sep 17 00:00:00 2001 From: Brian Date: Sat, 21 Apr 2007 12:30:54 -0600 Subject: memory leaks fixed --- docs/shading.html | 1 - 1 file changed, 1 deletion(-) (limited to 'docs/shading.html') diff --git a/docs/shading.html b/docs/shading.html index 64ec9990d0..aa19c88d86 100644 --- a/docs/shading.html +++ b/docs/shading.html @@ -67,7 +67,6 @@ All other major features of the shading language should function.

  • The quality of generated code is pretty good, register usage is fair.
  • Shader error detection and reporting of errors (InfoLog) is not very good yet. -
  • There are known memory leaks in the compiler.
  • The ftransform() function doesn't necessarily match the results of fixed-function transformation. -- cgit v1.2.3 From 7ff72a76590d5abdbe0891da51a5fed37d6fe312 Mon Sep 17 00:00:00 2001 From: Brian Date: Fri, 27 Apr 2007 15:23:19 -0600 Subject: document broken inverse trig functions --- docs/shading.html | 1 + 1 file changed, 1 insertion(+) (limited to 'docs/shading.html') diff --git a/docs/shading.html b/docs/shading.html index aa19c88d86..99342a329f 100644 --- a/docs/shading.html +++ b/docs/shading.html @@ -45,6 +45,7 @@ in Mesa:
  • Linking of multiple shaders is not supported
  • gl_ClipVertex
  • The derivative functions such as dFdx() are not implemented +
  • The inverse trig functions asin(), acos(), and atan() are not implemented

    -- cgit v1.2.3 From 4b1d1b7b1865191a2687d548edb6c9a066005925 Mon Sep 17 00:00:00 2001 From: Brian Date: Fri, 27 Apr 2007 15:25:00 -0600 Subject: document perspective correction issues --- docs/shading.html | 2 ++ 1 file changed, 2 insertions(+) (limited to 'docs/shading.html') diff --git a/docs/shading.html b/docs/shading.html index 99342a329f..0e1a5e1a7b 100644 --- a/docs/shading.html +++ b/docs/shading.html @@ -46,6 +46,8 @@ in Mesa:

  • gl_ClipVertex
  • The derivative functions such as dFdx() are not implemented
  • The inverse trig functions asin(), acos(), and atan() are not implemented +
  • The gl_Color and gl_SecondaryColor varying vars are interpolated + without perspective correction

    -- cgit v1.2.3