Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | glsl: append built-in, used varying vars to the varying vars list | Brian Paul | 2010-04-01 | 1 | -0/+27 |
| | |||||
* | mesa: make _mesa_copy_string() non-static | Brian Paul | 2010-04-01 | 2 | -7/+25 |
| | |||||
* | glsl: pass datatype to _mesa_add_varying() | Brian Paul | 2010-04-01 | 4 | -5/+7 |
| | | | | Will be needed later for transform feedback support. | ||||
* | glsl: add more vertex/fragment output info helpers | Brian Paul | 2010-04-01 | 2 | -13/+64 |
| | |||||
* | mesa: add transform feedback queries | Brian Paul | 2010-03-30 | 2 | -7/+53 |
| | | | | And make _mesa_copy_string() non-static. | ||||
* | glsl: avoid using rcp in length() functions | Brian Paul | 2010-03-29 | 1 | -3/+3 |
| | | | | See prev commit for related info. | ||||
* | glsl: remove rcp from sqrt() | Brian Paul | 2010-03-29 | 1 | -10/+4 |
| | | | | | | | Per a patch from Marek Olšák, we can simply multiply the incoming value by 1/sqrt(x) instead of using rcp. We're keeping the x==0 check to avoid generating NaN for sqrt(0). | ||||
* | Replace _mesa_strtod with _mesa_strtof. | Marcin Baczyński | 2010-03-15 | 4 | -11/+11 |
| | | | | Reviewed-by: Ian Romanick <[email protected]> | ||||
* | Grammar and spelling fixes | Jeff Smith | 2010-03-12 | 3 | -4/+4 |
| | | | | | Signed-off-by: Jeff Smith <[email protected]> Signed-off-by: Brian Paul <[email protected]> | ||||
* | ARB prog parser: added (float) casts and regenerate files | Brian Paul | 2010-03-11 | 2 | -30/+16 |
| | |||||
* | Revert "mesa: Remove pointless comparison of unsigned integer with a ↵ | Vinson Lee | 2010-03-04 | 1 | -4/+9 |
| | | | | | | | | | | | | | | negative constant." This reverts commit a05fdbcb719ac64e6be842372813f0f4ca2f4f93. Removing the comparison is wrong. The comparison with -1 should be changed to another value (probably PROGRAM_UNDEFINED) along with another change in the shader assembler. Conflicts: src/mesa/shader/prog_execute.c | ||||
* | glsl: Remove unsigned greater than or equal zero comparison. | Vinson Lee | 2010-03-04 | 1 | -1/+1 |
| | |||||
* | glsl: Remove unsigned greater than or equal zero comparison. | Vinson Lee | 2010-03-04 | 1 | -1/+1 |
| | |||||
* | glsl: Return NULL on _slan_gen_asm error path on non-debug builds. | Vinson Lee | 2010-03-04 | 1 | -0/+1 |
| | | | | | Exit the function early on the error path, instead of continuing, to prevent a null pointer dereference later on. | ||||
* | glsl: Add assert to check input to strcmp. | Vinson Lee | 2010-03-04 | 1 | -0/+1 |
| | |||||
* | glsl: Add assert to check input to strcmp. | Vinson Lee | 2010-03-02 | 1 | -0/+1 |
| | |||||
* | glsl: Move assert from outside to inside of _slang_gen_swizzle function. | Vinson Lee | 2010-02-27 | 1 | -1/+1 |
| | |||||
* | glsl: Assert input to strcmp is not null. | Vinson Lee | 2010-02-27 | 1 | -0/+1 |
| | |||||
* | glsl: Assert pointer is not null before dereferencing. | Vinson Lee | 2010-02-27 | 1 | -0/+1 |
| | |||||
* | glsl: implement support for GL_EXT_texture_array | Brian Paul | 2010-02-25 | 9 | -83/+246 |
| | | | | | | | | GL_EXT_texture_array is different from the existing GL_MESA_texture_array support in that the former is only supported for GLSL, not fixed-function. The shadow compare versions of the sampler functions haven't been tested yet. The non-shadow versions have been tested with a new piglit test. | ||||
* | mesa: added texture array targets in sizeof_glsl_type() | Brian Paul | 2010-02-25 | 1 | -0/+4 |
| | |||||
* | mesa: added cases for texture array targets | Brian Paul | 2010-02-25 | 1 | -0/+2 |
| | |||||
* | mesa: Move src/mesa/glapi/dispatch.h to mesa. | Chia-I Wu | 2010-02-25 | 1 | -1/+1 |
| | | | | | | glapi/dispatch.h is a core Mesa header file. Move the header file to main/ to make this clear. It also becomes clear after this change that IN_DRI_DRIVER is only used in core Mesa to enable the remap table. | ||||
* | mesa: Silence compiler format warning. | Vinson Lee | 2010-02-19 | 1 | -1/+1 |
| | |||||
* | mesa: fix snprintf() typo | Brian Paul | 2010-02-19 | 2 | -4/+4 |
| | |||||
* | mesa: restore _mesa_snprintf() - it's needed for Windows | Brian Paul | 2010-02-19 | 8 | -22/+22 |
| | | | | This reverts part of commit 298be2b028263b2c343a707662c6fbfa18293cb2 | ||||
* | mesa: casts to silence new warnings from printf() | Brian Paul | 2010-02-19 | 1 | -1/+1 |
| | |||||
* | mesa: remove abs/negate from fetch_vector1ui() | Brian Paul | 2010-02-19 | 1 | -14/+1 |
| | | | | | | This function is only used for the NV unpack instructions. Negate/abs make no sense and removing the code fixes Windows compiler warnings. Found by Karl Schultz. | ||||
* | Replace the _mesa_*printf() wrappers with the plain libc versions | Kristian Høgsberg | 2010-02-19 | 17 | -256/+256 |
| | |||||
* | Replace _mesa_malloc, _mesa_calloc and _mesa_free with plain libc versions | Kristian Høgsberg | 2010-02-19 | 26 | -128/+128 |
| | |||||
* | mesa: replace _mesa_bzero() with memset() | Brian Paul | 2010-02-19 | 5 | -6/+6 |
| | |||||
* | mesa: replace old MEMCPY macro with memcpy | Brian Paul | 2010-02-19 | 4 | -4/+4 |
| | |||||
* | Remove _mesa_memset in favor of plain memset. | Kenneth Graunke | 2010-02-19 | 4 | -5/+5 |
| | | | | This may break the SUNOS4 build, but it's no longer relevant. | ||||
* | Remove _mesa_memcpy in favor of plain memcpy. | Kenneth Graunke | 2010-02-19 | 12 | -15/+15 |
| | | | | This may break the SUNOS4 build, but it's no longer relevant. | ||||
* | Remove _mesa_atoi in favor of plain atoi. | Kenneth Graunke | 2010-02-19 | 3 | -9/+9 |
| | |||||
* | Remove _mesa_strncmp in favor of plain strncmp. | Kenneth Graunke | 2010-02-19 | 4 | -8/+8 |
| | |||||
* | Remove _mesa_strcmp in favor of plain strcmp. | Kenneth Graunke | 2010-02-19 | 8 | -21/+20 |
| | |||||
* | Remove _mesa_strlen in favor of plain strlen. | Kenneth Graunke | 2010-02-19 | 14 | -21/+21 |
| | |||||
* | Remove _mesa_strcpy in favor of plain strcpy. | Kenneth Graunke | 2010-02-19 | 3 | -3/+3 |
| | |||||
* | Remove _mesa_strncat in favor of plain strncat. | Kenneth Graunke | 2010-02-19 | 1 | -8/+8 |
| | |||||
* | Remove _mesa_strstr in favor of plain strstr. | Kenneth Graunke | 2010-02-19 | 2 | -9/+9 |
| | |||||
* | glsl: Silence unused value warning. | Vinson Lee | 2010-02-17 | 1 | -0/+2 |
| | |||||
* | mesa: Remove pointless comparison of unsigned integer with a negative constant. | Vinson Lee | 2010-02-15 | 1 | -9/+4 |
| | |||||
* | glsl: use new program cloning functions | Brian Paul | 2010-02-14 | 1 | -2/+2 |
| | |||||
* | mesa: added _mesa_clone_vertex/fragment_program() | Brian Paul | 2010-02-14 | 1 | -0/+16 |
| | | | | To reduce casting elsewhere... | ||||
* | mesa: Fix compiler warnings | Karl Schultz | 2010-02-13 | 5 | -12/+12 |
| | | | | | Add explicit casts, fix constant types, fix variable types. Fixes about 340 warnings in MSFT Visual Studio. | ||||
* | glsl: implement layout qualifiers | Brian Paul | 2010-02-13 | 1 | -19/+110 |
| | | | | | | | | | | | | | For GL_ARB_fragment_coord_conventions. This only applies to gl_FragCoord and controls pixel center origin and pixel center integer. For example: layout (origin_upper_left, pixel_center_integer) varying vec4 gl_FragCoord; This features introduces the idea of re-declaring variables with a changed type. This may also apply to arrays in some cases but that's not implemented at this time. | ||||
* | glsl: added type layout field and new type compare func | Brian Paul | 2010-02-13 | 2 | -2/+45 |
| | | | | | Note: because of a weird dependency checking bug, a 'make clean' may be needed before recompiling. | ||||
* | mesa: copy frag coord layout fields too | Brian Paul | 2010-02-13 | 1 | -0/+2 |
| | |||||
* | scons: User friendly message for code generated files | José Fonseca | 2010-02-10 | 1 | -2/+2 |
| |