Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | glsl: allow setting arrays of samplers in set_program_uniform() | Brian Paul | 2009-02-11 | 1 | -10/+19 |
| | | | | | | | Arrays of sampler vars haven't been tested much and might actually be broken. Will need to be revisited someday. Another fix for bug 20056. | ||||
* | glsl: raise GL_INVALID_OPERATION for glUniform(location < -1) | Brian Paul | 2009-02-11 | 1 | -0/+10 |
| | | | | | | | location = -1 is silently ignored, but other negative values should raise an error. Another fix for bug 20056. | ||||
* | glsl: rework _mesa_get_uniform[fi]v() to avoid using a fixed size ↵ | Brian Paul | 2009-02-11 | 1 | -44/+59 |
| | | | | intermediate array | ||||
* | glsl: fix glUniform() array bounds error checking | Brian Paul | 2009-02-11 | 1 | -9/+21 |
| | | | | | | | If too many array elements are specified, they're to be silently ignored (don't raise a GL error). Fixes another issue in bug 20056. | ||||
* | glsl: fix incorrect size returned by glGetActiveUniform() for array elements. | Brian Paul | 2009-02-11 | 1 | -8/+25 |
| | | | | Fixes one of the issues in bug 20056. | ||||
* | mesa: Use the stdio wrappers. | José Fonseca | 2009-02-11 | 1 | -22/+22 |
| | | | | snprint symbol does not exist in Windows. | ||||
* | mesa: Move statements after declarations. | José Fonseca | 2009-02-11 | 1 | -1/+1 |
| | |||||
* | intel: Add x8r8g8b8 visuals to DRI1 fbconfigs alongside a8r8gb8. | Eric Anholt | 2009-02-10 | 5 | -42/+54 |
| | | | | | This involved fixing driConcatConfigs to not return const (which had made a mess of a previous patch too). | ||||
* | sis: fix signedness warnings | Eric Anholt | 2009-02-10 | 2 | -5/+5 |
| | |||||
* | trident: Fix signedness warning. | Eric Anholt | 2009-02-10 | 1 | -1/+1 |
| | |||||
* | tdfx: Fix begin/endquery for current API. | Eric Anholt | 2009-02-10 | 1 | -4/+4 |
| | |||||
* | intel: Don't do the extra MI_FLUSH in flushing except when doing glFlush(). | Eric Anholt | 2009-02-10 | 1 | -5/+17 |
| | | | | | Everything other than "make sure the last rendering ends up visible on the screen" doesn't need that behavior. | ||||
* | intel: Speed up glDrawPixels(GL_ALPHA) by using an alpha texture format. | Eric Anholt | 2009-02-10 | 1 | -5/+6 |
| | |||||
* | intel: Fix some state leakage of {Client,}ActiveTexture in metaops. | Eric Anholt | 2009-02-10 | 2 | -0/+10 |
| | | | | Found while debugging cairo-gl. | ||||
* | intel: don't crash when dri2 tells us about buffers we don't care about. | Eric Anholt | 2009-02-10 | 1 | -0/+3 |
| | |||||
* | Merge commit 'origin/gallium-master-merge' | Brian Paul | 2009-02-10 | 169 | -768/+21060 |
|\ | | | | | | | | | | | | | | | | | | | | | | | This is the big merge of the gallium-0.2 branch into master. gallium-master-merge was just the staging area for it. Both gallium-0.2 and gallium-master-merge are considered closed now. Conflicts: progs/demos/Makefile src/mesa/main/state.c src/mesa/main/texenvprogram.c | ||||
| * | Merge commit 'origin/gallium-0.2' into gallium-master-merge | Brian Paul | 2009-02-10 | 4 | -35/+68 |
| |\ | |||||
| | * | Missing: tgsi: Fix build -- rename Size to NrTokens. | Patrice Mandin | 2009-02-10 | 1 | -1/+1 |
| | | | |||||
| | * | mesa: Compare formats using nominal bytes per pixel. | José Fonseca | 2009-02-10 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | | | | | | | This is a temporary fix which works for the formats we care so far. The real fix would be abandon the concept "nominal bytes per pixel" entirely in Mesa, and use macropixels instead, as done in gallium interfaces already. | ||||
| | * | mesa: fixes for srgb formats | Roland Scheidegger | 2009-02-09 | 1 | -20/+14 |
| | | | | | | | | | | | | | | | swizzling in fetch/store srgba/sargb functions fixed (consistent with equivalent non-srgb formats now). | ||||
| | * | fix _mesa_get_teximage for srgb textures | Roland Scheidegger | 2009-02-09 | 1 | -11/+52 |
| | | | |||||
| * | | gallium: Fixups for driCreateConfigs MSAA support. | Michel Dänzer | 2009-02-10 | 12 | -3/+28 |
| | | | | | | | | | | | | Add the MSAA samples array or make sure its contents are initialized. | ||||
| * | | mesa: add x86/rtasm/x86sse.c to fix linux-x86 build | Brian Paul | 2009-02-09 | 1 | -0/+1 |
| | | | |||||
| * | | re-add MSAA support | Brian Paul | 2009-02-09 | 12 | -35/+57 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit f7d80aa00611917bc8ce637136d982b151b8f44f) This also involved adding the new MSAA fields to driCreateConfigs(). Also, re-add prog_instructions->Sampler field for i965 driver. Will have to revisit that. | ||||
| * | | mesa: build/use libmesagallium.a for gallium builds | Brian Paul | 2009-02-09 | 1 | -1/+2 |
| | | | | | | | | | | | | | | | This contains the core mesa code but excludes things not needed for gallium such as tnl/, swrast/, swrast_setup/, etc. | ||||
| * | | mesa: added new linux-gallium and linux-gallium-debug configs | Brian Paul | 2009-02-09 | 2 | -8/+24 |
| | | | | | | | | | | | | | | | | | | | | | Also, remove gallium-related things from configs/default. They're in linux-gallium now. So the default builds are the same as they have been for Mesa/master. | ||||
| * | | mesa: prefix #includes with main/ | Brian Paul | 2009-02-09 | 1 | -4/+4 |
| | | | |||||
| * | | swrast: fix typo: s/drapix/drawpix/ | Brian Paul | 2009-02-09 | 1 | -1/+1 |
| | | | |||||
| * | | mesa: remove old 'sources' file in favor of 'sources.mak' | Brian Paul | 2009-02-09 | 1 | -303/+0 |
| | | | |||||
| * | | mesa: merge gallium-0.2 into gallium-master-merge | Brian Paul | 2009-02-09 | 156 | -709/+21212 |
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge commit 'origin/gallium-0.2' into gallium-master-merge Conflicts: Makefile docs/relnotes-7.4.html docs/relnotes.html src/mesa/drivers/dri/i965/brw_wm.h src/mesa/main/imports.c src/mesa/main/mtypes.h src/mesa/main/texcompress.c src/mesa/main/texenvprogram.c src/mesa/main/version.h src/mesa/vbo/vbo_exec_api.c src/mesa/vbo/vbo_save_draw.c | ||||
| | * | mesa: fix offset problem with interleaved arrays | Alan Hourihane | 2009-02-03 | 1 | -1/+1 |
| | | | |||||
| | * | gallium: remove pipe_buffer from surfaces | Zack Rusin | 2009-02-02 | 2 | -7/+6 |
| | | | | | | | | | | | | | | | | | | | | | this change disassociates, at least from the driver perspective, the surface from buffer. surfaces are technically now views on the textures so make it so by hiding the buffer in the internals of textures. | ||||
| | * | Merge branch 'gallium-wgl-rework' into gallium-0.2 | Keith Whitwell | 2009-02-02 | 26 | -4485/+0 |
| | |\ | | | | | | | | | | | | | | | | | | | | | Conflicts: src/gallium/state_trackers/wgl/shared/stw_public.h | ||||
| | | * | wgl: relocate wgl code to state_trackers/wgl | Keith Whitwell | 2009-01-27 | 26 | -4490/+0 |
| | | | | | | | | | | | | | | | | Similar to the GLX state trackers for DRI and xlib. | ||||
| | * | | stw: Remove pipe_winsys references. | José Fonseca | 2009-01-30 | 2 | -2/+1 |
| | | | | |||||
| | * | | gallium: Don't ask winsys name -- let pipe screen do that if it wants. | José Fonseca | 2009-01-30 | 1 | -5/+2 |
| | | | | | | | | | | | | | | | | Allows to leave screen->winsys NULL. | ||||
| | * | | stw: Don't use the winsys. | José Fonseca | 2009-01-30 | 3 | -9/+5 |
| | | | | |||||
| | * | | gallium: make p_winsys internal | Zack Rusin | 2009-01-30 | 6 | -10/+10 |
| | | | | | | | | | | | | | | | | | | | | move it to pipe/internal/p_winsys_screen.h and start converting the state trackers to the screen usage | ||||
| | * | | i965: fix bug in pass0_precalc_mov() | Brian Paul | 2009-01-29 | 1 | -3/+11 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Previously, "in-place" swizzles such as: MOV t, t.xxyx; were handled incorrectly. Fixed by splitting the one loop into two loops so we get all the refs before assigning them (to avoid potential clobbering). (cherry picked from master/commit faa48915d27634a12f123eaa6e954ec79565e365) | ||||
| | * | | i965: widen per-texture bitfields for 16 texture image units | Brian Paul | 2009-01-29 | 1 | -5/+5 |
| | | | | | | | | | | | | | | | | (cherry picked from master/commit f78c388b6c156cb155f089b00612f00919090a8e) | ||||
| | * | | intel: check if stencil test is enabled in intel_stencil_drawpixels() | Brian Paul | 2009-01-29 | 1 | -1/+5 |
| | | | | | | | | | | | | | | | | (cherry picked from master/commit 72ee0e247d799c85612c72bbd2257648e11fa583) | ||||
| | * | | intel: save/restore GL matrix mode in ↵ | Brian Paul | 2009-01-29 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | | | | | intel_meta_set_passthrough_transform(), intel_meta_restore_transform() (cherry picked from master, commit 723648f2ee2a8e529063c9da84e9dff9c8c6be99) | ||||
| | * | | mesa: set version to 7.4 for mesa_7_4_branch | Brian Paul | 2009-01-29 | 1 | -3/+3 |
| | | | | |||||
| | * | | mesa: set version to 7.3 | Brian Paul | 2009-01-29 | 1 | -1/+1 |
| | | | | |||||
| | * | | gallium: remove redundant size from the constant buffer | Zack Rusin | 2009-01-27 | 1 | -2/+0 |
| | | | | | | | | | | | | | | | | reuse the size of the actual buffer | ||||
| | * | | gallium: it's a reference value, not a reference number | Zack Rusin | 2009-01-27 | 1 | -1/+1 |
| | | | | |||||
| | * | | gallium: standardize api on the prefix "nr" | Zack Rusin | 2009-01-27 | 1 | -3/+3 |
| | | | | |||||
| | * | | gallium: standardize naming of masks | Zack Rusin | 2009-01-27 | 2 | -6/+6 |
| | | | | |||||
| | * | | gallium: standardize on stride instead of pitch in the interface | Zack Rusin | 2009-01-27 | 2 | -4/+4 |
| | |/ | |||||
| | * | gallium: updated comments in st_extensions.c | Brian Paul | 2009-01-26 | 1 | -7/+12 |
| | | |