Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-08-22 | libgl-xlib: Include missing header in xlib.c. | Vinson Lee | |
Include st_api.h for st_api_create_OpenGL symbol. | |||
2010-08-22 | nvfx: Silence unused variable warning. | Vinson Lee | |
The variable is used but only in the body of an assert. | |||
2010-08-22 | mesa: Initialize member variables in ir_to_mesa_src_reg constructor. | Vinson Lee | |
The default constructor did not initialize some member variables. | |||
2010-08-21 | mesa: Initialize variables in mesa_src_reg_from_ir_src_reg. | Vinson Lee | |
2010-08-21 | util: Use #ifdef instead of #if. | Vinson Lee | |
This is a typo fix of earlier commit 0f3b3751b8643352dcc242567b3696bd1505df1d. | |||
2010-08-21 | util: Define dump_cpu only for DEBUG builds. | Vinson Lee | |
dump_cpu is used only when DEBUG is defined. Fixes the following GCC warning on builds without DEBUG defined. util/u_cpu_detect.c:76: warning: 'debug_get_option_dump_cpu' defined but not used | |||
2010-08-21 | translate_sse: Silence uninitialized variable warnings. | Vinson Lee | |
Initialize variables on error paths. | |||
2010-08-21 | nvfx: Silence uninitialized variable warnings. | Vinson Lee | |
Variables weren't initialized on the error paths. | |||
2010-08-21 | i965g: Silence printf format warnings on 64-bit builds. | Vinson Lee | |
2010-08-21 | nvfx: Silence uninitialized variable warnings. | Vinson Lee | |
Silence the following i686-apple-darwin10-gcc-4.2.1 warnings. nv04_2d.c: In function 'nv04_region_copy_cpu': nv04_2d.c:560: warning: 'dswy' may be used uninitialized in this function nv04_2d.c:559: warning: 'dswx' may be used uninitialized in this function nv04_2d.c:562: warning: 'sswy' may be used uninitialized in this function nv04_2d.c:561: warning: 'sswx' may be used uninitialized in this function | |||
2010-08-21 | nv50: Silence incompatible pointer type initialization warning. | Vinson Lee | |
Silence the following GCC warning. warning: initialization from incompatible pointer type | |||
2010-08-21 | nv50: Disable unused code. | Vinson Lee | |
Disable release_hw and emit_mov_from_pred functions as they are currently not being used. | |||
2010-08-21 | i965g: Fix printf format warning on 32-bit platforms. | Vinson Lee | |
Fixes the following GCC warning on 32-bit platforms. warning: format '%li' expects type 'long int', but argument 4 has type 'int' | |||
2010-08-21 | glsl: Silence uninitialized variable warning. | Vinson Lee | |
i686-apple-darwin10-gcc-4.2.1 generated the following warning. warning: 'score' may be used uninitialized in this function GCC 4.4.3 on Linux didn't generate the above warning. | |||
2010-08-21 | r600g: partialy fix texturing from depth buffer + initial support for untiling | Jerome Glisse | |
Partialy fix texturing from depth buffer, depth buffer is tiled following different tile organisation that color buffer. This properly set the tile type & array mode field of texture sampler when sampling from db resource. Add initial support to untiling buffer when transfering them, it's kind of broken by corruption the vertex buffer of previous draw. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-08-22 | draw: Don't assert if indices point outside vertex buffer. | José Fonseca | |
This is valid input, and asserting here does causes the test suites that verify this to crash. Also, the assert was wrongly accepting the case max_index == vert_info->count which, IIUC, is the first vertex outside the buffer. Assuming the vert_info->count is precise (which often is not the case). | |||
2010-08-22 | mesa: Removed another unused variable. | José Fonseca | |
2010-08-21 | glsl: Silence unused variable warning. | Vinson Lee | |
The variable is actually used but only in the body of an assert. | |||
2010-08-21 | util: Silence uninitialized variable warnings. | Vinson Lee | |
2010-08-21 | glsl: Handle array declarations in function parameters. | Kenneth Graunke | |
The 'vec4[12] foo' style already worked, but the 'vec4 foo[12]' style did not. Also, 'vec4[] foo' was wrongly accepted. Fixes piglit test cases array-19.vert and array-21.vert. May fix fd.o bug #29684 (or at least part of it). | |||
2010-08-21 | nvfx: actually fix it properly | Luca Barbieri | |
2010-08-21 | nvfx: fix incorrect assert | Luca Barbieri | |
2010-08-21 | util: Move loop variable declaration outside for loop. | Vinson Lee | |
Fixes build error with MSVC. | |||
2010-08-21 | nvfx: Fix SCons build. | Vinson Lee | |
Move declarations before code. Fix void pointer arithmetic. | |||
2010-08-21 | nvfx: fix warnings | Luca Barbieri | |
2010-08-21 | gallivm: Emit DIVPS instead of RCPPS. | José Fonseca | |
See comments for detailed rationale. Thanks to Michal Krol and Zack Rusin for detecting and investigating this in detail. | |||
2010-08-21 | nvfx: enable translate_sse | Luca Barbieri | |
2010-08-21 | auxiliary: Add missing files to SCons build. | Vinson Lee | |
Add u_linear.c and u_linkages.c to SCons build. Reorder list of files to be more alphabetical. | |||
2010-08-21 | auxiliary: Reorder list of files in Makefile. | Vinson Lee | |
This patch reorders the list of files so that the order is more alphabetic. | |||
2010-08-21 | scons: Fix nvfx build. | Vinson Lee | |
2010-08-21 | nvfx: slightly improve handling of overlong vps | Luca Barbieri | |
2010-08-21 | nvfx: tweak CMP in fp | Luca Barbieri | |
2010-08-21 | nvfx: implement CMP in vp | Luca Barbieri | |
2010-08-21 | nvfx: implement TXL in fp | Luca Barbieri | |
2010-08-21 | nvfx: implement SSG in fp | Luca Barbieri | |
2010-08-21 | nvfx: implement DP2 in vp and fp | Luca Barbieri | |
2010-08-21 | nvfx: implement TRUNC in vp and fp | Luca Barbieri | |
2010-08-21 | nvfx: implement NOP | Luca Barbieri | |
2010-08-21 | nvfx: add vertex program control flow | Luca Barbieri | |
2010-08-21 | nvfx: fix vertex shader headers | Luca Barbieri | |
2010-08-21 | nv40: add fragment program control flow | Luca Barbieri | |
2010-08-21 | nvfx: refactor shader assembler | Luca Barbieri | |
2010-08-21 | nvfx: add option to dump shaders in TGSI and native code | Luca Barbieri | |
2010-08-21 | nvfx: improve and correct nvfx_shader.h | Luca Barbieri | |
2010-08-21 | nvfx: fix lodbias | Luca Barbieri | |
2010-08-21 | nvfx: mostly fix inline corruption magically | Luca Barbieri | |
Not sure why this mostly works. | |||
2010-08-21 | nvfx: fix GPU hardlocks when depth buffer is absent | Luca Barbieri | |
2010-08-21 | nvfx: fire ring after transfers | Luca Barbieri | |
Might reduce the risk of running out of memory | |||
2010-08-21 | nv30: band-aid viewport issues | Luca Barbieri | |
For some reason nv30 seems to like to reset the viewport, even though attempts to isolate where exactly it does that have currently been inconclusive. | |||
2010-08-21 | nvfx: support flatshade_first | Luca Barbieri | |