index
:
~dbaker/mesa
11.2-next
18.1-proposed
for-jason
jenkins
jenkins_gl
master
meson-windows
patches-for-ajax
submit/generator-argparse
submit/generator-mako
submit/python2-for-intel
wip/generator-mako
wip/generator-rewrite-v2
wip/glapi-cleanup
wip/gles32-symbols
Unnamed repository; edit this file 'description' to name the repository.
UNKNOWN
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
glsl
/
ast_to_hir.cpp
Age
Commit message (
Expand
)
Author
Files
Lines
2012-11-06
glsl: remove incorrect 'struct' keyword
Brian Paul
1
-1
/
+1
2012-09-10
glsl: Generate compile errors for explicit blend indices < 0 or > 1.
Kenneth Graunke
1
-2
/
+17
2012-08-07
glsl: Only flag RowMajor on matrix-type variables.
Eric Anholt
1
-5
/
+9
2012-07-20
glsl: Translate the AST for uniform blocks into some IR structures.
Eric Anholt
1
-0
/
+67
2012-07-20
glsl: Turn UBO variable declarations into ir_variables and check qualifiers.
Eric Anholt
1
-3
/
+30
2012-07-19
glsl: Remove open coded version of ir_variable::interpolation_string().
Kenneth Graunke
1
-15
/
+1
2012-07-09
glsl: Add parsing for GLSL uniform blocks.
Eric Anholt
1
-0
/
+11
2012-06-01
glsl: Remove spurious printf messages
Ian Romanick
1
-3
/
+0
2012-05-17
glsl: Drop the extra NULL specifiction on ir_assignment constructors.
Eric Anholt
1
-21
/
+14
2012-05-17
glsl: Fix assertion failure on handling switch on uint expressions.
Eric Anholt
1
-1
/
+1
2012-05-17
glsl: Reject non-scalar switch expressions.
Eric Anholt
1
-4
/
+2
2012-05-17
glsl: Let the constructor figure out the types of switch-related expressions.
Eric Anholt
1
-4
/
+1
2012-05-17
glsl: Fix indentation of switch code.
Eric Anholt
1
-282
/
+263
2012-05-04
glsl: Don't consider unused FS out variables as being statically assigned.
Eric Anholt
1
-3
/
+3
2012-04-19
glsl: Properly throw compile-time errors for conflicting FS output writes.
Eric Anholt
1
-0
/
+66
2012-04-19
glsl: Track in each ir_variable whether it was ever assigned.
Eric Anholt
1
-0
/
+4
2012-04-13
glsl: add support for ARB_blend_func_extended (v3)
Dave Airlie
1
-1
/
+8
2012-04-09
glsl: Drop the round-trip through ast_type_specifier for many builtin types.
Eric Anholt
1
-2
/
+2
2012-04-02
glsl: Use ir_rvalue to represent generic error_type values.
Kenneth Graunke
1
-1
/
+1
2012-03-26
glsl: Explicitly NULL-check variables before making a dereference.
Kenneth Graunke
1
-2
/
+2
2012-03-13
glsl: Avoid extra if statements for logic and/or with no side effects.
Eric Anholt
1
-17
/
+6
2012-02-03
glsl: Add error case for switch() with two default cases.
Eric Anholt
1
-0
/
+15
2012-02-03
glsl: Throw an error when faced with a duplicated switch() case label.
Eric Anholt
1
-0
/
+23
2012-02-03
glsl: Throw the required error when a case label is a non-constant.
Eric Anholt
1
-2
/
+14
2012-02-03
glsl: Save and restore the whole switch state for nesting.
Eric Anholt
1
-253
/
+244
2012-01-10
glsl: Add error checking for applying interpolation qualifiers to other vars.
Eric Anholt
1
-0
/
+23
2012-01-06
glsl: Don't mark assignment temporaries as read-only
Ian Romanick
1
-5
/
+0
2012-01-06
glsl: Emit errors for assignments to non-l-value expressions
Ian Romanick
1
-7
/
+22
2012-01-06
glsl: Track descriptions of some expressions that can't be l-values
Ian Romanick
1
-0
/
+5
2012-01-04
glsl: Don't use base type for bit-not when there's an error
Ian Romanick
1
-1
/
+1
2011-11-22
glsl: finish up ARB_conservative_depth (v2)
Marek Olšák
1
-3
/
+7
2011-11-07
glsl: Generate IR for switch statements
Dan McCabe
1
-42
/
+244
2011-11-07
glsl: Reference data structure ctors in grammar
Dan McCabe
1
-0
/
+54
2011-11-03
linker: Check that initializers for global variables match
Ian Romanick
1
-0
/
+3
2011-11-02
glsl: Fix type mismatch when incrementing or decrementing uint.
Paul Berry
1
-8
/
+24
2011-10-28
glsl: Clean-up spurious error message on bad structure definitions
Ian Romanick
1
-6
/
+24
2011-10-28
glsl: Generate an error for array-of-array declarations
Ian Romanick
1
-2
/
+14
2011-10-27
glsl: Distinguish between no interpolation qualifier and 'smooth'
Paul Berry
1
-1
/
+3
2011-10-27
mesa: Expose GLSL interpolation qualifiers in gl_fragment_program.
Paul Berry
1
-4
/
+4
2011-10-06
glsl: Remove version check when looking for identifiers containing "__".
Jason Wood
1
-2
/
+1
2011-10-05
glsl: Consider "__" in identifers as reserved.
Eric Anholt
1
-0
/
+13
2011-09-23
glsl: Defer initialization of built-in functions until they're needed.
Kenneth Graunke
1
-1
/
+0
2011-09-14
glsl: Remove field array_lvalue from ir_variable.
Paul Berry
1
-19
/
+20
2011-09-09
glsl: Silence several "warning: unused parameter"
Ian Romanick
1
-0
/
+6
2011-09-08
glsl: Clarify error message about whole-array assignment in GLSL 1.10.
Eric Anholt
1
-6
/
+25
2011-09-08
glsl: When assiging from a whole array, mark it as used.
Eric Anholt
1
-0
/
+1
2011-09-08
glsl: Check that gl_ClipDistance[] is not sized too large.
Paul Berry
1
-0
/
+15
2011-09-08
glsl: Rework oversize array check for gl_TexCoord.
Paul Berry
1
-12
/
+33
2011-08-15
glsl: When assigning to a whole array, mark the array as accessed.
Eric Anholt
1
-10
/
+11
2011-08-08
glsl: Check array size is const before asserting that no IR was generated.
Paul Berry
1
-5
/
+8
[next]