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
*
nir: Translate memory barrier intrinsics from GLSL IR.
Francisco Jerez
2015-05-12
1
-0
/
+4
*
nir: Translate image load, store and atomic intrinsics from GLSL IR.
Francisco Jerez
2015-05-12
1
-11
/
+115
*
nir: Fix indexing of atomic counter arrays with a constant value.
Francisco Jerez
2015-05-12
1
-1
/
+2
*
nir: Add memory barrier intrinsic.
Francisco Jerez
2015-05-12
1
-0
/
+7
*
nir: Define image load, store and atomic intrinsics.
Francisco Jerez
2015-05-12
1
-0
/
+27
*
nir: fix sampler lowering pass for arrays
Tapani Pälli
2015-05-12
1
-19
/
+12
*
nir: Fix aggressive typos in nir_from_ssa.c.
Kenneth Graunke
2015-05-08
1
-5
/
+5
*
nir/search: Save/restore the variables_seen bitmask when matching
Jason Ekstrand
2015-05-08
1
-0
/
+12
*
nir/search: Assert that variable id's are in range
Jason Ekstrand
2015-05-08
1
-0
/
+1
*
nir/search: handle explicitly sized sources in match_value
Jason Ekstrand
2015-05-08
1
-8
/
+8
*
nir/nir: Use a linked list instead of a hash set for use/def sets
Jason Ekstrand
2015-05-08
14
-306
/
+281
*
nir: Use nir_instr_rewrite_src in copy propagation
Jason Ekstrand
2015-05-08
1
-61
/
+10
*
nir: Add a function for rewriting the condition of an if statement
Jason Ekstrand
2015-05-08
2
-0
/
+23
*
nir: Add and use initializer #defines for nir_src and nir_dest
Jason Ekstrand
2015-05-08
6
-18
/
+15
*
nir: Modernize the out-of-SSA pass
Jason Ekstrand
2015-05-08
1
-103
/
+36
*
nir/validate: Validate SSA def parent instructions
Jason Ekstrand
2015-05-08
1
-0
/
+2
*
nir: Delete all traces of nir_op_flog
Ian Romanick
2015-05-08
2
-7
/
+0
*
nir: Don't produce nir_op_flog from GLSL IR
Ian Romanick
2015-05-08
1
-1
/
+1
*
nir: Delete all traces of nir_op_fexp
Ian Romanick
2015-05-08
2
-8
/
+0
*
nir: Don't produce nir_op_fexp from GLSL IR
Ian Romanick
2015-05-08
1
-1
/
+1
*
glsl: check total count of multi-slot double vertex attribs
Dave Airlie
2015-05-08
1
-1
/
+40
*
glsl: track which program inputs are doubles
Dave Airlie
2015-05-08
1
-13
/
+3
*
glsl: add ARB_vertex_attrib_64bit support. (v2)
Dave Airlie
2015-05-08
4
-0
/
+9
*
nir: Allow feq/fne/ieq/ine to be optimized with inot.
Matt Turner
2015-05-07
1
-0
/
+4
*
nir: Recognize (a < c || b < c) as min(a, b) < c.
Matt Turner
2015-05-07
1
-0
/
+2
*
nir: Recognize trivial min/max.
Matt Turner
2015-05-07
1
-0
/
+6
*
nir: Recognize i2b(b2i(x)) as x.
Matt Turner
2015-05-07
1
-0
/
+1
*
nir: Recognize imul(b2i(a), b2i(b)) as a logical AND.
Matt Turner
2015-05-07
1
-0
/
+1
*
glsl: mark special built-in inputs referenced by vertex stage
Tapani Pälli
2015-05-06
1
-1
/
+6
*
glsl: add parens in shader_integer_mix() to silence compiler warning
Brian Paul
2015-05-05
1
-1
/
+1
*
nir: add nir_array.h to the sources list
Emil Velikov
2015-05-05
1
-0
/
+1
*
glsl: don't lower fragdata array if the output data types don't match
Samuel Iglesias Gonsalvez
2015-05-05
1
-0
/
+10
*
glsl/es3.1: Allow misc ARB_gpu_shader5 built-ins in GLSL ES 3.10
Ian Romanick
2015-05-04
1
-11
/
+11
*
glsl/es3.1: Allow textureGather and textureGatherOffset in GLSL ES 3.10
Ian Romanick
2015-05-04
1
-29
/
+61
*
glsl/es3.1: Allow enhnaced packing functions in GLSL ES 3.10
Ian Romanick
2015-05-04
1
-6
/
+7
*
glsl/es3.1: Allow interger mix built-ins in GLSL ES 3.10
Ian Romanick
2015-05-04
5
-7
/
+55
*
glsl/es3.1: Allow separate shader objects in GLSL ES 3.10
Ian Romanick
2015-05-04
1
-2
/
+2
*
glsl/es3.1: Allow explicit uniform locations in GLSL ES 3.10
Ian Romanick
2015-05-04
1
-4
/
+13
*
glsl/es3.1: Allow 3.10 ES shaders in a GLES 3.1 context
Ian Romanick
2015-05-04
2
-3
/
+8
*
glsl: Add glsl_parser_state::has_atomic_counters helper
Ian Romanick
2015-05-04
5
-5
/
+10
*
glsl: Silence unused parameter warnings
Ian Romanick
2015-05-04
2
-7
/
+7
*
glsl: Keep track of the early_fragment_tests flag in gl_shader.
Francisco Jerez
2015-05-04
4
-3
/
+7
*
glsl: Error out on invalid uses of the early_fragment_tests layout qualifier.
Francisco Jerez
2015-05-04
3
-5
/
+34
*
glsl: Forbid use of image qualifiers in declarations of type other than image.
Francisco Jerez
2015-05-04
1
-2
/
+9
*
glsl: Split off memory qualifiers from storage qualifiers.
Francisco Jerez
2015-05-04
1
-1
/
+16
*
glsl: Forbid opaque variables as operands of the ternary operator.
Francisco Jerez
2015-05-04
1
-0
/
+12
*
glsl: fix packing support for arrays of doubles
Timothy Arceri
2015-04-28
1
-2
/
+2
*
Fix a few typos
Zoë Blade
2015-04-27
7
-13
/
+13
*
glsl: replace while loop with without_array function
Timothy Arceri
2015-04-27
1
-3
/
+1
*
glsl: support packing of arrays of arrays
Timothy Arceri
2015-04-27
1
-8
/
+2
[next]