summaryrefslogtreecommitdiff
path: root/src/mesa/shader
AgeCommit message (Expand)AuthorFilesLines
2010-04-01glsl: fix bad return value in link_transform_feedback()Brian Paul1-1/+1
2010-04-01glsl: remove obsolete commentBrian Paul1-1/+0
2010-04-01glsl: do extra link checking for transform feedbackBrian Paul1-3/+83
2010-04-01glsl: append built-in, used varying vars to the varying vars listBrian Paul1-0/+27
2010-04-01mesa: make _mesa_copy_string() non-staticBrian Paul2-7/+25
2010-04-01glsl: pass datatype to _mesa_add_varying()Brian Paul4-5/+7
2010-04-01glsl: add more vertex/fragment output info helpersBrian Paul2-13/+64
2010-03-30mesa: add transform feedback queriesBrian Paul2-7/+53
2010-03-29glsl: avoid using rcp in length() functionsBrian Paul1-3/+3
2010-03-29glsl: remove rcp from sqrt()Brian Paul1-10/+4
2010-03-15Replace _mesa_strtod with _mesa_strtof.Marcin Baczyński4-11/+11
2010-03-12Grammar and spelling fixesJeff Smith3-4/+4
2010-03-11ARB prog parser: added (float) casts and regenerate filesBrian Paul2-30/+16
2010-03-04Revert "mesa: Remove pointless comparison of unsigned integer with a negative...Vinson Lee1-4/+9
2010-03-04glsl: Remove unsigned greater than or equal zero comparison.Vinson Lee1-1/+1
2010-03-04glsl: Remove unsigned greater than or equal zero comparison.Vinson Lee1-1/+1
2010-03-04glsl: Return NULL on _slan_gen_asm error path on non-debug builds.Vinson Lee1-0/+1
2010-03-04glsl: Add assert to check input to strcmp.Vinson Lee1-0/+1
2010-03-02glsl: Add assert to check input to strcmp.Vinson Lee1-0/+1
2010-02-27glsl: Move assert from outside to inside of _slang_gen_swizzle function.Vinson Lee1-1/+1
2010-02-27glsl: Assert input to strcmp is not null.Vinson Lee1-0/+1
2010-02-27glsl: Assert pointer is not null before dereferencing.Vinson Lee1-0/+1
2010-02-25glsl: implement support for GL_EXT_texture_arrayBrian Paul9-83/+246
2010-02-25mesa: added texture array targets in sizeof_glsl_type()Brian Paul1-0/+4
2010-02-25mesa: added cases for texture array targetsBrian Paul1-0/+2
2010-02-25mesa: Move src/mesa/glapi/dispatch.h to mesa.Chia-I Wu1-1/+1
2010-02-19mesa: Silence compiler format warning.Vinson Lee1-1/+1
2010-02-19mesa: fix snprintf() typoBrian Paul2-4/+4
2010-02-19mesa: restore _mesa_snprintf() - it's needed for WindowsBrian Paul8-22/+22
2010-02-19mesa: casts to silence new warnings from printf()Brian Paul1-1/+1
2010-02-19mesa: remove abs/negate from fetch_vector1ui()Brian Paul1-14/+1
2010-02-19Replace the _mesa_*printf() wrappers with the plain libc versionsKristian Høgsberg17-256/+256
2010-02-19Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versionsKristian Høgsberg26-128/+128
2010-02-19mesa: replace _mesa_bzero() with memset()Brian Paul5-6/+6
2010-02-19mesa: replace old MEMCPY macro with memcpyBrian Paul4-4/+4
2010-02-19Remove _mesa_memset in favor of plain memset.Kenneth Graunke4-5/+5
2010-02-19Remove _mesa_memcpy in favor of plain memcpy.Kenneth Graunke12-15/+15
2010-02-19Remove _mesa_atoi in favor of plain atoi.Kenneth Graunke3-9/+9
2010-02-19Remove _mesa_strncmp in favor of plain strncmp.Kenneth Graunke4-8/+8
2010-02-19Remove _mesa_strcmp in favor of plain strcmp.Kenneth Graunke8-21/+20
2010-02-19Remove _mesa_strlen in favor of plain strlen.Kenneth Graunke14-21/+21
2010-02-19Remove _mesa_strcpy in favor of plain strcpy.Kenneth Graunke3-3/+3
2010-02-19Remove _mesa_strncat in favor of plain strncat.Kenneth Graunke1-8/+8
2010-02-19Remove _mesa_strstr in favor of plain strstr.Kenneth Graunke2-9/+9
2010-02-17glsl: Silence unused value warning.Vinson Lee1-0/+2
2010-02-15mesa: Remove pointless comparison of unsigned integer with a negative constant.Vinson Lee1-9/+4
2010-02-14glsl: use new program cloning functionsBrian Paul1-2/+2
2010-02-14mesa: added _mesa_clone_vertex/fragment_program()Brian Paul1-0/+16
2010-02-13mesa: Fix compiler warningsKarl Schultz5-12/+12
2010-02-13glsl: implement layout qualifiersBrian Paul1-19/+110