Mesa (master): glsl2: Update TODO file

Ian Romanick idr at kemper.freedesktop.org
Thu Sep 2 17:21:40 UTC 2010


Module: Mesa
Branch: master
Commit: 6e3cbeb3614152ea3aa188666d6166b484ee3f56
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=6e3cbeb3614152ea3aa188666d6166b484ee3f56

Author: Ian Romanick <ian.d.romanick at intel.com>
Date:   Thu Sep  2 10:11:54 2010 -0700

glsl2: Update TODO file

---

 src/glsl/TODO |   26 +++++++-------------------
 1 files changed, 7 insertions(+), 19 deletions(-)

diff --git a/src/glsl/TODO b/src/glsl/TODO
index 07ac5f5..a376238 100644
--- a/src/glsl/TODO
+++ b/src/glsl/TODO
@@ -1,30 +1,14 @@
-- Handle constant expressions of (struct == struct)
-
-- Handle constant expressions of (struct != struct)
-
-- Treat built-in functions with constant parameters as constant expressions.
-  - Rewrite all built-in functions return a single expression.
-  - Modify the HIR generator for functions to automatically inline built-in
-    functions durning translation.
-  - Care must be taken to handle both the 1.10 rules and the 1.20+ rules.  In
-    1.10, built-in functions cannot be constant expressions.
-
 - Detect code paths in non-void functions that don't reach a return statement
 
-- Handle over-riding built-in functions
-  - Is the overload per-compilation unit or per-linked shader?
-
-- Handle redeclaration of built-in variables
-  - Handle addition of qualifiers such as 'invariant' or 'centroid'.
-  - Handle resizing of arrays.
-  - Other?  We'll have to look at the spec.
-
 - Improve handling of constants and their initializers.  Constant initializers
   should never generate any code.  This is trival for scalar constants.  It is
   also trivial for arrays, matrices, and vectors that are accessed with
   constant index values.  For others it is more complicated.  Perhaps these
   cases should be silently converted to uniforms?
 
+- Implement support for ir_binop_dot in ir_algebraic.cpp.  Perform
+  transformations such as "dot(v, vec3(0.0, 1.0, 0.0))" -> v.y.
+
 1.30 features:
 
 - Implement AST-to-HIR conversion of bit-shift operators.
@@ -48,3 +32,7 @@
 
 - Implement support for 1.30 style shadow compares which only return a float
   instead of a vec4.
+
+- Implement support for gl_ClipDistance.  This is non-trivial because
+  gl_ClipDistance is exposed as a float[8], but all hardware actually
+  implements it as vec4[2].
\ No newline at end of file




More information about the mesa-commit mailing list