summaryrefslogtreecommitdiffstats
path: root/src/glsl/builtin_functions.cpp
Commit message (Expand)AuthorAgeFilesLines
* glsl: improve accuracy of atan()Erik Faye-Lund2014-10-101-10/+55
* glsl: Fix memory leak in builtin_builder::_image_prototype.Iago Toral Quiroga2014-10-021-3/+5
* glsl: Allow texture2DProjLod and textureCubeLod in GL ESKalyan Kondapally2014-09-291-3/+3
* glsl: Use bit-flags image attributes and uint16_t for the image formatIan Romanick2014-08-291-5/+5
* glsl: add ARB_derivative control supportIlia Mirkin2014-08-141-0/+48
* glsl: Make it possible to ignore built-ins when matching signatures.Kenneth Graunke2014-08-041-1/+2
* glsl: add new interpolateAt* builtin functionsChris Forbes2014-07-121-0/+67
* glsl: Use typed foreach_in_list instead of foreach_list.Matt Turner2014-07-011-2/+1
* glsl: Add support for EmitStreamVertex() and EndStreamPrimitive().Iago Toral Quiroga2014-06-301-0/+58
* glsl: Modify ir_end_primitive to have a stream.Iago Toral Quiroga2014-06-301-1/+2
* glsl: Modify ir_emit_vertex to have a stream.Iago Toral Quiroga2014-06-301-1/+2
* glsl: simplify the M_PI*f macros, fixes build on OpenBSDJonathan Gray2014-05-131-5/+3
* glsl: Use M_PI_* macros.Matt Turner2014-04-151-7/+13
* glsl: Clean up "unused parameter" warningsIan Romanick2014-03-281-1/+1
* glsl: Allow dot() on scalars, and throw out dotlike().Matt Turner2014-03-181-4/+4
* glsl: Match whitespace changes from previous patch.Matt Turner2014-03-181-4/+4
* glsl: Expose pack/unpack built-ins for ARB_gpu_shader5.Matt Turner2014-03-181-9/+17
* glsl: switch to c11 mutex functionsBrian Paul2014-03-031-7/+7
* glsl: rename _restrict to restrict_flagBrian Paul2014-02-121-1/+1
* glsl: Add image built-in function generator.Francisco Jerez2014-02-121-0/+251
* glsl: Add helper methods to glsl_type for dealing with images.Francisco Jerez2014-02-121-1/+1
* glsl: Add locking to builtin_builder singletonDaniel Kurtz2014-02-111-1/+10
* glsl: Simplify built-in generator functions for min3/max3/mid3.Kenneth Graunke2014-01-241-77/+60
* glsl: Statically cast parameter exec_node to ir_variable.Kenneth Graunke2014-01-131-1/+1
* glsl: Convert piles of foreach_iter to the newer foreach_list macro.Kenneth Graunke2014-01-131-2/+2
* mesa: Namespace qualify fma to override ambiguity with fma from math.hThomas Sondergaard2014-01-081-1/+1
* mesa: Clean up nomenclature for pipeline stages.Paul Berry2014-01-081-11/+11
* glsl: rename min(), max() functions to fix MSVC buildBrian Paul2014-01-061-3/+3
* glsl: implement mid3 built-in functionMaxence Le Doré2014-01-061-0/+38
* glsl: implement max3 built-in functionMaxence Le Doré2014-01-061-0/+38
* glsl: Implement min3 built-in functionMaxence Le Doré2014-01-061-0/+38
* glsl: add a shader_trinary_minmax predicateMaxence Le Doré2014-01-061-0/+6
* glsl: Replace _mesa_glsl_parser_targets enum with gl_shader_type.Paul Berry2013-12-171-11/+11
* glsl: Simplify the built-in function linking code.Kenneth Graunke2013-12-011-2/+1
* glsl: Create an accessor for the built-in function shader.Kenneth Graunke2013-12-011-2/+10
* glsl: Enable dFdx, dFdy, and fwidth by default in GLSL ES 3.00.Kenneth Graunke2013-11-071-1/+2
* glsl: Add built-in functions and constants required for ARB_shader_atomic_cou...Francisco Jerez2013-10-291-0/+58
* glsl: Basic support for built-in intrinsics.Francisco Jerez2013-10-291-3/+46
* glsl: add signatures for textureGatherOffsets()Chris Forbes2013-10-261-0/+30
* glsl: add support for texture functions with offset arraysChris Forbes2013-10-261-0/+9
* glsl: Add new textureGather[Offset]() overloads for shadow samplersChris Forbes2013-10-261-0/+10
* glsl: Add support for separate reference Z for shadow samplersChris Forbes2013-10-261-5/+15
* glsl: relax const offset requirement for textureGatherOffsetChris Forbes2013-10-261-20/+41
* glsl: Add ARB_gpu_shader5 textureGatherOffset signaturesChris Forbes2013-10-261-0/+16
* glsl: Implement [iu]mulExtended() built-ins for ARB_gpu_shader5.Matt Turner2013-10-071-0/+31
* glsl: Implement usubBorrow() built-in for ARB_gpu_shader5.Matt Turner2013-10-071-0/+21
* glsl: Implement uaddCarry() built-in for ARB_gpu_shader5.Matt Turner2013-10-071-0/+21
* glsl: add ARB_gpu_shader5's additional textureGather signaturesChris Forbes2013-10-061-1/+26
* glsl: Add support for specifying the component in textureGatherChris Forbes2013-10-061-0/+13
* glsl: add plumbing for GL_ARB_texture_query_levelsChris Forbes2013-10-051-0/+56