Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-11-07 | prog parse: Handle GL_VERTEX_PROGRAM_ARB in glLoadProgramNV | Ian Romanick | |
2009-11-07 | prog parse: Handle GL_VERTEX_PROGRAM_NV in glProgramStringARB | Ian Romanick | |
Handle both NV vertex programs and NV vertex state programs passed to glProgramStringARB. | |||
2009-11-07 | prog parse: Handle GL_FRAGMENT_PROGRAM_ARB in glLoadProgramNV | Ian Romanick | |
2009-11-07 | prog parse: Handle GL_FRAGMENT_PROGRAM_NV in glProgramStringARB | Ian Romanick | |
2009-11-06 | ARB prog parser: Regenerate parser from previous commits. | Ian Romanick | |
2009-11-06 | ARB prog parser: Release old program string in ↵ | Ian Romanick | |
_mesa_parse_arb_{fragment,vertex}_program The program structure passed to _mesa_parse_arb_program is just a place holder. The stings that actually need to be released are only known to the functions calling _mesa_parse_arb_program, so they should be freed there. | |||
2009-11-06 | ARB prog parser: Release strings returned from the lexer that don't need to ↵ | Ian Romanick | |
be kept | |||
2009-11-06 | Revert "ARB prog parser: Fix epic memory leak in lexer / parser interface" | Ian Romanick | |
This reverts commit 93dae6761bc90bbd43b450d2673620ec189b2c7a. This change was completely broken when the parser uses multiple strings in a single production. It would be nice if bug fixes could initially land somewhere other than the stable branch. | |||
2009-10-28 | mesa: remove unneeded #includes | Brian Paul | |
2009-10-28 | mesa: include imports.h to silence warning | Brian Paul | |
2009-10-27 | ARB prog parser: Fix epic memory leak in lexer / parser interface | Ian Romanick | |
Anything that matched IDENTIFIER was strdup'ed and returned to the parser. However, almost every case of IDENTIFIER in the parser just dropped the returned string on the floor. Every swizzle string, every option string, every use of a variable, etc. leaked memory. Create a temporary buffer in the parser state (string_dumpster and dumpster_size). Return strings from the lexer to the parser in the buffer. Grow the buffer as needed. When the parser needs to keep a string (i.e., delcaring a new variable), let it make a copy then. The only leak that valgrind now detects is /occasionally/ the copy of the program string in gl_program::String is leaked. I'm not seeing how. :( | |||
2009-10-27 | ARB prog parser: Don't leak program string | Ian Romanick | |
The program string is kept in the program object. On the second call into glProgramStringARB the previous kept string would be leaked. | |||
2009-10-27 | ARB prog parser: Don't leak symbol table header structures | Ian Romanick | |
2009-10-27 | glsl: fix memory leak | Brian Paul | |
A slightly modified version of a patch from Vinson Lee. | |||
2009-10-22 | ARB prog parser: Fix parameter array size comparison | Ian Romanick | |
Array indexes are invalid when >= the maximum, but array sizes are only in valid when > the maximum. This prevented programs from declaring a single maximum size array. See the piglit vp-max-array test. | |||
2009-10-15 | mesa: regenerated lex.yy.c w/ _mesa_strtod() | Brian Paul | |
2009-10-15 | mesa: Use _mesa_strtod in the lexer for assembly shaders | Neil Roberts | |
See bug 24531. | |||
2009-10-07 | shader_api: Fix bounds checking of glUniform and glUniformMatrix | Nicolai Hähnle | |
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> Reviewed-by: Ian Romanick <ian.d.romanick@intel.com> | |||
2009-10-07 | prog_parameter: Document the fact that Size may be > 4 | Nicolai Hähnle | |
Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-10-01 | mesa: fix mem leaks | Brian Paul | |
2009-10-01 | glsl: fix mem leak | Brian Paul | |
2009-10-01 | mesa: Return -FLT_MAX instead of 0 for LG2(0). | Vinson Lee | |
lim x->0 log(x) = -inf so -FLT_MAX is a better approximation than 0 for LG2(0). | |||
2009-09-29 | glsl: regenerated file | Brian Paul | |
2009-09-29 | glsl: rewrite sqrt(x) intrinsic to handle x=0 | Brian Paul | |
Since sqrt() is basically implemented in terms of RSQ/RCP we'll do a divide by zero if x=0 and wind up with unpredictable results. Now use CMP instruction to test for x<=0 and return zero in that case. | |||
2009-09-29 | glsl: add support for CMP instruction | Brian Paul | |
2009-09-25 | mesa: move declaration before code | Vinson Lee | |
2009-09-24 | i965: Emit zero initialization for NV VP temporaries as required. | Eric Anholt | |
This is similar to what r300 does inside the driver, but I've added it as a generic option since it seems most hardware will want it. Fixes piglit nv-init-zero-reg.vpfp and nv-init-zero-addr.vpfp. | |||
2009-09-24 | mesa: Initialize NV_vertex_program fields for the parameter lists and such. | Eric Anholt | |
This helps let drivers treat NV_vp like ARB_vp. | |||
2009-09-24 | mesa: added comment | Brian Paul | |
2009-09-24 | Merge branch 'mesa_7_5_branch' into mesa_7_6_branch | Brian Paul | |
2009-09-24 | glsl: init var to silence warning | Brian Paul | |
2009-09-24 | glsl: fix missing initializers warning | Brian Paul | |
2009-09-23 | mesa: don't bias LOD in shader interpreter; do it in swrast | Brian Paul | |
2009-09-21 | r300: Fix handling of NV_vertex_program parameters | Nicolai Hähnle | |
The handling is a bit inefficient, unfortunately, but I don't want to make any intrusive changes for Mesa 7.6. Signed-off-by: Nicolai Hähnle <nhaehnle@gmail.com> | |||
2009-09-15 | Merge branch 'mesa_7_5_branch' into mesa_7_6_branch | Brian Paul | |
2009-09-14 | glsl: added some link debug code (disabled) | Brian Paul | |
2009-09-14 | glsl: remove extra #version directives from concatenated shader sources | Brian Paul | |
When we concatenate shaders to do our form of poor-man linking, if there's multiple #version directives, preprocessing fails. This change disables the extra #version directives by changing the first two chars to //. This should help with some Wine issues such as bug 23946. | |||
2009-09-04 | ARB prog: replace 'unsigned' with 'gl_state_index' | Brian Paul | |
Fixes compilation warnings with MSVC. | |||
2009-09-04 | ARB prog: rename POINT, SIZE to POINT_TOK, SIZE_TOK | Brian Paul | |
Fixes symbol collisions with typedefs in Microsoft headers. Perhaps we should prefix/suffix all the lexer tokens to avoid this. | |||
2009-09-01 | ARB prog parser: Fix handling of stateOptModMatNum | Ian Romanick | |
The optional array index should clearly be enclosed in square brackets. This helps the oglconform test vp_binding.c get a bit farther, but it still fails. | |||
2009-08-31 | mesa: debug printf for KIL | Brian Paul | |
2009-08-27 | Merge branch 'mesa_7_5_branch' | Brian Paul | |
2009-08-27 | mesa: direct program debug output to stderr instead of stdout | marvin24 | |
2009-08-27 | mesa: move decls before code | Vinson Lee | |
2009-08-26 | Merge branch 'mesa_7_5_branch' | Brian Paul | |
2009-08-26 | glsl: asst. clean-ups in set_program_uniform() | Brian Paul | |
Remove redunant type check for samplers (assert instead). Move some local vars. Update comments. | |||
2009-08-26 | glsl: signal that the program needs to be re-translated when samplers change | Brian Paul | |
2009-08-26 | mesa: var renaming, new assertion | Brian Paul | |
2009-08-26 | mesa: additional instruction field size assertions | Brian Paul | |
2009-08-26 | Merge branch 'mesa_7_5_branch' | Brian Paul | |