index
:
mesa.git
gallium_va_encpackedheader01
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
glsl
Commit message (
Expand
)
Author
Age
Files
Lines
*
glsl/glcpp: Fix glcpp-test to correctly extract test-specific arguments
Carl Worth
2014-08-07
1
-1
/
+1
*
glsl/glcpp: Fix line-continuation code to handle multiple newline flavors
Carl Worth
2014-08-07
1
-9
/
+87
*
glsl/glcpp: Don't include any newline characters in #error token
Carl Worth
2014-08-07
1
-1
/
+1
*
glsl/glcpp: Treat CR+LF pair as a single newline
Carl Worth
2014-08-07
2
-5
/
+9
*
glsl/glcpp: Add test script for testing various line-termination characters
Carl Worth
2014-08-07
2
-11
/
+137
*
glsl/glcpp: Fix for macros that expand to include "defined" operators
Carl Worth
2014-08-07
3
-45
/
+387
*
glsl/glcpp: Swallow empty #pragma directives.
Carl Worth
2014-08-07
2
-1
/
+7
*
glsl/glcpp: Fix #pragma to not over-increment the line-number count
Carl Worth
2014-08-07
3
-2
/
+12
*
glsl/glcpp: Add testing for null directives with spaces and comments
Carl Worth
2014-08-07
2
-0
/
+18
*
glsl/glcpp: Fix NULL directives when followed by a single-line comment
Carl Worth
2014-08-07
1
-1
/
+1
*
glsl/glcpp: Add tests for #define followed by comments
Carl Worth
2014-08-07
2
-2
/
+8
*
glsl/glcpp: Allow single-line comments immediately after #define
Carl Worth
2014-08-07
1
-1
/
+1
*
glsl/glcpp: Add test for "#define without macro name"
Carl Worth
2014-08-07
2
-0
/
+4
*
glsl/glcpp: Add explicit error for "#define without macro name"
Carl Worth
2014-08-07
3
-5
/
+7
*
glsl: support unsigned increment in ir_loop controls
Tapani Pälli
2014-08-07
1
-3
/
+14
*
glsl: Rebuild the symbol table without unreachable symbols
Ian Romanick
2014-08-04
1
-1
/
+25
*
glsl: Only create one ir_function for a given name.
Kenneth Graunke
2014-08-04
1
-14
/
+17
*
glsl: Make it possible to ignore built-ins when matching signatures.
Kenneth Graunke
2014-08-04
8
-16
/
+26
*
glsl: Do not add extra padding to structures
Ian Romanick
2014-08-04
1
-3
/
+0
*
glsl: Correctly determine when the field of a UBO is row-major
Ian Romanick
2014-08-04
1
-15
/
+120
*
linker: Use the matrix layout information in ir_variable and glsl_type for UB...
Ian Romanick
2014-08-04
1
-10
/
+5
*
glsl: Track matrix layout of variables using two bits
Ian Romanick
2014-08-04
4
-15
/
+61
*
glsl: Also track matrix layout information into structures
Ian Romanick
2014-08-04
1
-1
/
+7
*
glsl: Track matrix layout of structure fields using two bits
Ian Romanick
2014-08-04
6
-50
/
+96
*
glsl: Correctly load columns of a row-major matrix
Ian Romanick
2014-08-04
1
-4
/
+11
*
linker: Add padding after the last field of a structure
Ian Romanick
2014-08-04
3
-3
/
+25
*
linker: Add a last_field parameter to various program_resource_visitor methods
Ian Romanick
2014-08-04
3
-16
/
+30
*
glsl: Do not eliminate 'shared' or 'std140' blocks or block members
Ian Romanick
2014-08-04
3
-4
/
+65
*
glsl: Use the without_array predicate to simplify some code
Ian Romanick
2014-08-04
4
-23
/
+12
*
glsl: Add without_array type predicate
Ian Romanick
2014-08-04
1
-0
/
+12
*
glsl: Use constant_expression_value instead of as_constant
Ian Romanick
2014-08-04
1
-1
/
+2
*
util: Gather some common macros
Jason Ekstrand
2014-08-04
1
-3
/
+4
*
util: Move the open-addressing linear-probing hash_table to src/util.
Kenneth Graunke
2014-08-04
6
-10
/
+4
*
util: Move ralloc to a new src/util directory.
Kenneth Graunke
2014-08-04
20
-999
/
+17
*
glsl: fix switch statement default case regressions
Tapani Pälli
2014-08-04
1
-6
/
+6
*
define GL_OES_standard_derivatives if extension is supported
Kevin Rogovin
2014-08-02
1
-0
/
+2
*
glsl/glcpp: rename ERROR to ERROR_TOKEN to fix MSVC build
Brian Paul
2014-07-30
2
-4
/
+4
*
glsl: Add flex options to eliminate the default rule
Carl Worth
2014-07-29
1
-10
/
+1
*
glsl/glcpp: Add flex options to eliminate the default rule.
Carl Worth
2014-07-29
1
-1
/
+2
*
glsl/glcpp: Combine the two rules matching any character
Carl Worth
2014-07-29
1
-6
/
+6
*
glsl/glcpp: Alphabetize lists of start conditions
Carl Worth
2014-07-29
1
-3
/
+3
*
glsl/glcpp: Add a catch-all rule for unexpected characters.
Carl Worth
2014-07-29
1
-0
/
+13
*
glsl/glcpp: Treat carriage return as equivalent to line feed.
Carl Worth
2014-07-29
1
-9
/
+8
*
glsl/glcpp: Add test for a multi-line comment within an #if 0 block
Carl Worth
2014-07-29
2
-0
/
+14
*
glsl/glcpp: Test that macro parameters substitute immediately after periods
Carl Worth
2014-07-29
2
-0
/
+8
*
glsl/glcpp: Add (non)-support for ++ and -- operators
Carl Worth
2014-07-29
4
-1
/
+33
*
glsl/glcpp: Emit error for duplicate parameter name in function-like macro
Carl Worth
2014-07-29
3
-0
/
+35
*
glsl/glcpp: Add an explanatory comment for "loc != NULL" check
Carl Worth
2014-07-29
1
-0
/
+4
*
glsl/glcpp: Drop the HASH_ prefix from token names like HASH_IF
Carl Worth
2014-07-29
2
-38
/
+39
*
glsl: Properly lex extra tokens when handling # directives.
Kenneth Graunke
2014-07-29
1
-0
/
+1
[next]