Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: disable fprintf() error | Brian Paul | 2008-07-09 | 1 | -0/+2 |
| | |||||
* | mesa: check for OpenBSD (bug 15604) | Brian Paul | 2008-07-09 | 1 | -1/+11 |
| | | | | cherry-picked from master | ||||
* | mesa: fix state.clip[n].plane parsing bug (bug 16611) | Brian Paul | 2008-07-09 | 1 | -3/+6 |
| | | | | cherry-picked from master | ||||
* | mesa: remove debug code | Brian Paul | 2008-07-08 | 1 | -1/+0 |
| | |||||
* | mesa: implement glGetUniformiv() with new ctx->Driver function | Brian Paul | 2008-07-08 | 3 | -9/+45 |
| | | | | The old implementation could overwrite the caller's param buffer. | ||||
* | mesa: fix bug/failure in recursive function inlining | Brian Paul | 2008-07-08 | 1 | -6/+56 |
| | | | | | Fixes a failure for cases such as y = f(a, f(a, b)) All the usual tests still pass but regressions are possible... | ||||
* | mesa: more debug output | Brian Paul | 2008-07-08 | 1 | -20/+60 |
| | |||||
* | mesa: compute global var size before doing codegen | Brian Paul | 2008-07-08 | 1 | -9/+9 |
| | |||||
* | mesa: add missing VARYING case to storage_string() | Brian Paul | 2008-07-08 | 1 | -0/+2 |
| | |||||
* | mesa: added GLAPIENTRY keywords | Jonathan White | 2008-07-07 | 2 | -10/+10 |
| | |||||
* | gallium: move assertion (though not really significant) | Brian Paul | 2008-07-07 | 1 | -1/+2 |
| | |||||
* | gallium: simplify/fix buffer_offset, src_offset computation for VBO arrays | Brian Paul | 2008-07-07 | 1 | -2/+21 |
| | | | | Things broke when vertex position wasn't the first attribute. | ||||
* | mesa: Replace Proxy1D/2D/etc with ProxyTex[] indexed by TEXTURE_x_INDEX. | Brian Paul | 2008-07-04 | 5 | -297/+154 |
| | | | | | | Simplification in colortab.c too. cherry-picked from master (fe469007037d9d5cdbe1677d8ff7368b276e9e7c) | ||||
* | gallium: fix st_choose_format(internalFormat=GL_RGBA16) | Brian Paul | 2008-07-04 | 1 | -1/+4 |
| | | | | Need to check if we're choosing a surface or texture format. | ||||
* | mesa: Implement mutex/locking around texture object reference counting. | Brian Paul | 2008-07-04 | 8 | -213/+194 |
| | | | | | | | | Use new _mesa_reference_texobj() function for referencing/unreferencing textures. Add new assertions/tests to try to detect invalid usage of deleted textures. cherry-picked from master (9e01b915f1243a3f551cb795b7124bd1e52ca15f) | ||||
* | gallium: replace assertion with conditional | Brian Paul | 2008-07-04 | 1 | -1/+2 |
| | |||||
* | mesa: generate GL_INVALID_OPERATION in _mesa_get_uniform_location() if ↵ | Brian Paul | 2008-07-04 | 1 | -0/+5 |
| | | | | program isn't linked | ||||
* | mesa: move assertion | Brian Paul | 2008-07-04 | 1 | -2/+2 |
| | |||||
* | mesa: added _vbo_VertexAttrib4f() | Brian Paul | 2008-07-03 | 2 | -0/+9 |
| | |||||
* | mesa: fix incorrect array size, added assertion | Brian Paul | 2008-07-03 | 1 | -1/+2 |
| | |||||
* | mesa: fix array storage allocation bug | Brian Paul | 2008-07-03 | 1 | -0/+8 |
| | |||||
* | mesa: regenerated file | Brian Paul | 2008-07-03 | 1 | -761/+763 |
| | |||||
* | mesa: additional vec4 constructor | Brian Paul | 2008-07-03 | 1 | -0/+8 |
| | |||||
* | mesa: fix various error codes | Brian Paul | 2008-07-03 | 1 | -94/+144 |
| | |||||
* | mesa: fix some error codes in _mesa_ShaderSourceARB() | Brian Paul | 2008-07-03 | 1 | -4/+4 |
| | |||||
* | mesa: fix problem freeing framebuffer/renderbuffer objects | Brian Paul | 2008-07-03 | 3 | -4/+62 |
| | | | | Basically, set up no-op Delete() methods for the DummyFrame/Renderbuffer obj | ||||
* | mesa: added case for fixed pt | Brian Paul | 2008-07-03 | 1 | -0/+5 |
| | |||||
* | gallium: move, increase ST_MAX_SHADER_TOKENS | Brian Paul | 2008-07-03 | 2 | -3/+7 |
| | |||||
* | gallium: fix surface memleak in bitmap code | Brian Paul | 2008-07-03 | 1 | -0/+5 |
| | | | | Found w/ tunnel2.c demo. | ||||
* | mesa: fix vertex array validation test for attribute 0 (vert pos) | Brian Paul | 2008-07-02 | 1 | -8/+12 |
| | | | | | | | We don't actually need vertex array[0] enabled when using a vertex program/shader. cherry-picked from master | ||||
* | gallium: replace an assertion with "if (!texobj) continue" | Brian Paul | 2008-07-02 | 1 | -1/+2 |
| | | | | | | It's possible to call update_samplers() between the time a fragment shader is bound and when a texture image is defined (such as glClear). This fixes the case where we don't have a complete texture object yet. | ||||
* | gallium: fix a bug in vertex program output mapping | Brian Paul | 2008-07-02 | 1 | -9/+24 |
| | | | | | | | Need to translate VERT_RESULT_PSIZ, BFC0, BFC1 to TGSI shader output slots after all other attributes have been handled. This fixes a bug where generic vertex program outputs (varying vars) could get mapped to the same slot at point size or back-face colors. | ||||
* | mesa: additional GLSL built-in constants | Brian Paul | 2008-07-02 | 2 | -13/+20 |
| | |||||
* | mesa: when linking a shader program, make sure all the shaders compiled OK | Brian Paul | 2008-07-02 | 1 | -0/+8 |
| | | | | cherry-picked from master | ||||
* | mesa: added some debug code (disabled) | Brian Paul | 2008-07-02 | 2 | -0/+9 |
| | | | | cherry-picked from master | ||||
* | mesa: fix error codes in _mesa_shader_source(), _mesa_get_shader_source() | Brian Paul | 2008-07-02 | 1 | -2/+12 |
| | | | | | | | | | If the 'shader' parameter is wrong, need to either generate GL_INVALID_VALUE or GL_INVALID_OPERATION. It depends on whether 'shader' actually names a 'program' or is a totally unknown ID. There might be other cases to fix... cherry-picked from master | ||||
* | mesa: regenerated file | Brian Paul | 2008-07-02 | 1 | -152/+163 |
| | |||||
* | mesa: added some missing equal() notEqual() intrinsics | Brian Paul | 2008-07-02 | 1 | -0/+33 |
| | | | | cherry-picked from master | ||||
* | mesa: disable some debug assertions | Brian Paul | 2008-07-02 | 1 | -0/+5 |
| | | | | | We can sometimes fail these assertions because of how swizzled storage works. Will revisit someday. | ||||
* | mesa: regenerated files | Brian Paul | 2008-07-02 | 2 | -20/+35 |
| | |||||
* | mesa: fix all(bvec2) function typo, add missing bvec2/3/4() constuctors | Brian Paul | 2008-07-02 | 2 | -1/+39 |
| | | | | cherry-picked from master | ||||
* | mesa: added _mesa_print_swizzle() debugging helper | Brian Paul | 2008-07-02 | 2 | -0/+16 |
| | |||||
* | mesa: fix issues around multisample enable | Roland Scheidegger | 2008-07-02 | 6 | -4/+22 |
| | | | | | multisample enable is enabled by default, however gl mandates multisample rendering rules only apply if there's also a multisampled buffer. | ||||
* | mesa: fix a GLSL vector subscript/writemask bug | Brian Paul | 2008-07-01 | 1 | -47/+90 |
| | | | | | | | | | | | This fixes a failure for cases like: vec4 v; v[1] *= 2.0; The v[1] actually acts like a writemask, equivalent to v.y The fix is a bit convoluted, but will do for now. cherry-picked from master | ||||
* | mesa: move some functions | Brian Paul | 2008-07-01 | 1 | -99/+99 |
| | | | | cherry-picked from master | ||||
* | mesa: make _slang_swizzle_swizzle() non-private | Brian Paul | 2008-07-01 | 2 | -9/+16 |
| | | | | cherry-picked from master | ||||
* | mesa: better function inlining in the presence of 'return' statements | Brian Paul | 2008-07-01 | 1 | -23/+105 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Before, the presence of a 'return' statement always prevented inlining a function. This was because we didn't want to accidentally return from the _calling_ function. We still need the semantic of 'return' when inlining but we can't always use unconditional branches/jumps (GPUs don't always support arbitrary branching). Now, we allow inlining functions w/ return if the return is the last statement in the function. This fixes the common case of a function that returns a value, such as: vec4 square(const in vec4 x) { return x * x; } which effectively compiles into: vec4 square(const in vec4 x) { __retVal = x * x; return; } The 'return' can be no-op'd now and we can inline the function. cherry-picked from master | ||||
* | mesa: add/fix some IrInfo entries for debugging purposes | Brian Paul | 2008-07-01 | 1 | -3/+5 |
| | | | | cherry-picked from master | ||||
* | mesa: added null ptr checks | Brian Paul | 2008-06-28 | 1 | -2/+2 |
| | |||||
* | s/GL_INVALID_VALUE/GL_INVALID_OPERATION/ in _mesa_get_uniformfv() | Brian Paul | 2008-06-28 | 1 | -4/+6 |
| |