summaryrefslogtreecommitdiff
path: root/src/compiler/glsl/TODO
blob: bd077a85678ba75fbe37c927b49875980abc9ab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
- Detect code paths in non-void functions that don't reach a return statement

- 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?

- Track source locations throughout the IR.  There are currently several
  places where we cannot emit line numbers for errors (and currently emit 0:0)
  because we've "lost" the line number information.  This is particularly
  noticeable at link time.