index
:
mesa.git
gallium_va_encpackedheader01
master
Unnamed repository; edit this file 'description' to name the repository.
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
glsl
Commit message (
Expand
)
Author
Age
Files
Lines
*
glsl: Add built-in constants for ARB_shader_image_load_store.
Francisco Jerez
2014-02-12
3
-0
/
+37
*
glcpp: Add built-in define for ARB_shader_image_load_store.
Francisco Jerez
2014-02-12
1
-0
/
+3
*
glsl: Add built-in types defined by ARB_shader_image_load_store.
Francisco Jerez
2014-02-12
2
-0
/
+104
*
glsl/ast: Generalize some sampler variable restrictions to all opaque types.
Francisco Jerez
2014-02-12
2
-31
/
+36
*
glsl/ast: Forbid declaration of image variables in structures and uniform blo...
Francisco Jerez
2014-02-12
1
-0
/
+10
*
glsl/ast: Make sure that image argument qualifiers match the function prototype.
Francisco Jerez
2014-02-12
1
-1
/
+6
*
glsl/ast: Verify that function calls don't discard image format qualifiers.
Francisco Jerez
2014-02-12
1
-0
/
+58
*
glsl/ast: Validate and apply memory qualifiers to image variables.
Francisco Jerez
2014-02-12
1
-0
/
+51
*
glsl/parser: Handle image built-in types.
Francisco Jerez
2014-02-12
1
-0
/
+33
*
glsl/parser: Handle image memory qualifiers.
Francisco Jerez
2014-02-12
1
-0
/
+83
*
glsl/parser: Handle the early_fragment_tests input layout qualifier.
Francisco Jerez
2014-02-12
3
-1
/
+20
*
glsl/lexer: Add new tokens for ARB_shader_image_load_store.
Francisco Jerez
2014-02-12
2
-39
/
+56
*
glsl/ast: Keep track of type qualifiers defined by ARB_shader_image_load_store.
Francisco Jerez
2014-02-12
3
-3
/
+38
*
glsl: Add gl_uniform_storage fields to keep track of image uniform indices.
Francisco Jerez
2014-02-12
1
-18
/
+23
*
glsl: Add image memory and layout qualifiers to ir_variable.
Francisco Jerez
2014-02-12
2
-0
/
+19
*
glsl: Add helper methods to glsl_type for dealing with images.
Francisco Jerez
2014-02-12
4
-7
/
+35
*
glsl: Add image type to the GLSL IR.
Francisco Jerez
2014-02-12
6
-52
/
+68
*
glsl: Add ARB_shader_image_load_store extension enables.
Francisco Jerez
2014-02-12
2
-0
/
+3
*
glsl: Do not vectorize vector array dereferences.
Matt Turner
2014-02-11
1
-0
/
+14
*
glsl: Add locking to builtin_builder singleton
Daniel Kurtz
2014-02-11
1
-1
/
+10
*
glsl: Optimize triop_csel with all-true or all-false.
Eric Anholt
2014-02-07
1
-0
/
+7
*
glsl: Optimize various cases of fma (aka MAD).
Eric Anholt
2014-02-07
1
-0
/
+13
*
glsl: Optimize lrp(x, x, coefficient) --> x.
Eric Anholt
2014-02-07
1
-0
/
+2
*
glsl: Optimize pow(x, 1) -> x.
Eric Anholt
2014-02-07
1
-0
/
+4
*
glsl: Optimize log(exp(x)) and exp(log(x)) into x.
Eric Anholt
2014-02-07
1
-0
/
+36
*
glsl: Optimize ~~x into x.
Eric Anholt
2014-02-07
1
-0
/
+5
*
glsl: Don't lose precision qualifiers when encountering "centroid".
Kenneth Graunke
2014-02-07
1
-1
/
+1
*
glsl: Fix null access on file read error
Juha-Pekka Heikkila
2014-02-07
1
-1
/
+2
*
glsl: Initialize ubo_binding_mask flags to zero.
Matt Turner
2014-02-06
1
-0
/
+1
*
glsl/cs: Prohibit mixing of compute and non-compute shaders.
Paul Berry
2014-02-05
1
-0
/
+7
*
glsl/cs: Prohibit user-defined ins/outs in compute shaders.
Paul Berry
2014-02-05
1
-0
/
+7
*
mesa/cs: Handle compute shader local size during linking.
Paul Berry
2014-02-05
1
-0
/
+64
*
glsl/cs: Handle compute shader local_size_{x,y,z} declaration.
Paul Berry
2014-02-05
8
-36
/
+274
*
mesa/cs: Implement MAX_COMPUTE_WORK_GROUP_COUNT constant.
Paul Berry
2014-02-05
5
-0
/
+13
*
mesa/cs: Implement MAX_COMPUTE_WORK_GROUP_INVOCATIONS constant.
Paul Berry
2014-02-05
2
-0
/
+2
*
mesa/cs: Implement MAX_COMPUTE_WORK_GROUP_SIZE constant.
Paul Berry
2014-02-05
5
-0
/
+40
*
glsl/cs: update main.cpp to use the ".comp" extension for compute shaders.
Paul Berry
2014-02-05
1
-0
/
+2
*
glsl/cs: Populate default values for ctx->Const.Program[MESA_SHADER_COMPUTE].
Paul Berry
2014-02-05
2
-0
/
+8
*
mesa/cs: Add a MESA_SHADER_COMPUTE stage and update switch statements.
Paul Berry
2014-02-05
3
-0
/
+28
*
glsl/cs: Change some linker loops to use MESA_SHADER_FRAGMENT as a bound.
Paul Berry
2014-02-05
1
-4
/
+4
*
mesa/cs: Add extension enable flags for ARB_compute_shader.
Paul Berry
2014-02-05
4
-0
/
+7
*
glsl: Fix continue statements in do-while loops.
Paul Berry
2014-02-04
1
-9
/
+14
*
glsl: Make condition_to_hir() callable from outside ast_iteration_statement.
Paul Berry
2014-02-04
2
-7
/
+6
*
glsl: Expand non-expr & non-swizzle scalar rvalues in vectorizing.
Matt Turner
2014-01-31
1
-6
/
+8
*
glcpp: Reject #version after the version has been resolved.
Matt Turner
2014-01-31
1
-0
/
+6
*
glcpp: Rename the variable used to enable debugging.
Carl Worth
2014-01-31
1
-1
/
+1
*
glcpp: Add "make check" test for comment-parsing bug
Carl Worth
2014-01-31
2
-0
/
+5
*
glcpp: Don't enter lexer's NEWLINE_CATCHUP start state for single-line comments
Carl Worth
2014-01-31
1
-2
/
+0
*
glsl: s/_NDEBUG/NDEBUG/
Emil Velikov
2014-01-29
1
-1
/
+1
*
glsl: Avoid combining statements from different basic blocks.
Matt Turner
2014-01-27
1
-0
/
+35
[next]