summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/shaderapi.c
Commit message (Expand)AuthorAgeFilesLines
* mesa: add GLSL_REPORT_ERRORS debug flagBrian Paul2012-05-191-0/+14
* mesa: add some comments on shaderapi.c functionsBrian Paul2012-05-191-1/+14
* mesa: Remove dead _mesa_sizeof_glsl_type().Eric Anholt2012-04-161-60/+0
* mesa: add support for ARB_blend_func_extended (v4)Dave Airlie2012-04-131-0/+3
* mesa: remove _mesa_ffs(), implement ffs() for non-GNU platformsBrian Paul2012-01-121-0/+1
* mesa: include uniforms.h to silence warning, remove unused varBrian Paul2012-01-111-2/+1
* mesa: Validate sampler settings using uniform storageIan Romanick2012-01-111-62/+2
* mesa: Track fixed-function fragment shader as a shaderIan Romanick2012-01-111-0/+29
* mesa: use STATIC_ASSERT in a few more placesBrian Paul2012-01-101-1/+1
* mesa: Fix typos in transform feedback error messages.Paul Berry2012-01-041-1/+1
* mesa: Disable certain error checks when transform feedback is pausedPaul Berry2011-12-231-2/+3
* mesa: Implement glGetFragDataLocationIan Romanick2011-11-081-20/+0
* mesa: Stub implementation of glBindFragDataLocationIan Romanick2011-11-081-18/+0
* Delete code made dead by previous uniform related patchesIan Romanick2011-11-071-1/+0
* mesa: Rewrite the way uniforms are tracked and handledIan Romanick2011-11-071-5/+17
* mesa: add support for GL_OES_EGL_image_externalChia-I Wu2011-11-031-0/+2
* mesa: Prevent repeated glDeleteProgram() from blowing away our refcounts.Eric Anholt2011-10-101-3/+5
* mesa: Simplify validate_shader_program after previous refactorsIan Romanick2011-10-071-11/+6
* mesa: Use gl_shader_program::_LinkedShaders instead of FragmentProgramIan Romanick2011-10-071-4/+5
* mesa: Use gl_shader_program::_LinkedShaders instead of GeometryProgramIan Romanick2011-10-071-4/+5
* mesa: Use gl_shader_program::_LinkedShaders instead of VertexProgramIan Romanick2011-10-071-4/+5
* mesa: Determine GL_ACTIVE_ATTRIBUTE_MAX_LENGTH by walking the GLSL IR.Ian Romanick2011-10-041-7/+1
* mesa: Determine GL_ACTIVE_ATTRIBUTES by walking the GLSL IR.Ian Romanick2011-10-041-1/+1
* mesa: Move _mesa_GetActiveAttribARB to shader_query.cppIan Romanick2011-10-041-42/+0
* mesa: Move _mesa_BindAttribLocationARB to shader_query.cppIan Romanick2011-10-041-52/+0
* mesa: Move _mesa_GetAttribLocationARB to shader_query.cppIan Romanick2011-10-041-41/+0
* mesa: Add missing _mesa_sizeof_glsl_type() for UNSIGNED_INT.Eric Anholt2011-09-281-0/+1
* mesa: In validate_program(), initialize errMsg for safety.Kenneth Graunke2011-08-051-1/+1
* mesa: Use the Elements macro for the sampler index assert in validate_sampler...Henri Verbeet2011-07-071-1/+1
* mesa: Allow sampling from units >= MAX_TEXTURE_UNITS in shaders.Henri Verbeet2011-07-071-1/+1
* mesa: add some minor fixes for geometry shadersBrian Paul2011-06-021-0/+6
* mesa: UseShaderProgramEXT and Uniform* shouldn't be allowed inside Begin/EndMarek Olšák2011-06-011-0/+2
* mesa: forbid UseProgram to be called inside Begin/EndMarek Olšák2011-05-301-0/+2
* mesa: minor whitespace fixesBrian Paul2011-05-251-4/+4
* mesa: remove set-but-unused variable in bind_attrib_locationMarek Olšák2011-05-011-9/+1
* mesa: TEXTURE_BUFFER fix-upBrian Paul2011-04-061-0/+1
* mesa: move location of some geometry program limitsBrian Paul2011-03-111-1/+1
* mesa: call FLUSH_VERTICES() before deleting shaders, buffers, query objectsBrian Paul2011-03-111-0/+3
* mesa: add/update VERBOSE_API loggingBrian Paul2011-02-081-0/+11
* Convert everything from the talloc API to the ralloc API.Kenneth Graunke2011-01-311-4/+4
* mesa: Connect glGetShaderPrecisionFormat into the dispatch tableIan Romanick2011-01-201-0/+1
* mesa: implement glGetShaderPrecisionFormat()Brian Paul2011-01-191-5/+44
* mesa: Add actual support for glReleaseShaderCompiler from ES2.Eric Anholt2011-01-141-2/+5
* mesa: Directly include mfeatures.h in files that perform feature tests.Vinson Lee2011-01-071-0/+1
* mesa: Include mtypes.h in files that use gl_context struct.Vinson Lee2011-01-051-0/+1
* mesa: use gl_shader_type enumBrian Paul2010-11-231-3/+3
* mesa: Fix delayed state flagging for EXT_sso-related program changes.Eric Anholt2010-11-061-18/+5
* mesa: Make metaops use program refcounts instead of names.Eric Anholt2010-10-291-44/+53
* mesa: plug in stubs for glBindFragDataLocation(), glGetFragDataLocation()Brian Paul2010-10-281-0/+43
* Track separate programs for each stageIan Romanick2010-10-271-15/+74