Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-11-11 | r600g: enforce minimum stride on render target texture images | Keith Whitwell | |
Fixes piglit/fbo_readpixels since staging upload changes. | |||
2010-11-11 | r600g: do not try to use staging resource for depth textures | Keith Whitwell | |
Currently r600_resource_copy_region() will turn these copies into transfers + memcpys, so to avoid recursion we must not turn those transfers back into blits. | |||
2010-11-11 | r600g: guard experimental s3tc code with R600_ENABLE_S3TC | Keith Whitwell | |
2010-11-11 | nvfx: fill PIPE_CAP_PRIMITIVE_RESTART and PIPE_CAP_SHADER_STENCIL_EXPORT | Lucas Stach | |
Signed-off-by: Lucas Stach <dev@lynxeye.de> Signed-off-by: Francisco Jerez <currojerez@riseup.net> | |||
2010-11-10 | libgl-xlib: Use sw helper instead of roll your own | Jakob Bornecrantz | |
2010-11-10 | graw: Use inline sw helper instead of roll your own loader | Jakob Bornecrantz | |
2010-11-10 | galahad: Correct the name of the scons library | Jakob Bornecrantz | |
2010-11-10 | r600g: allow driver to work without submitting cmd to GPU | Jerome Glisse | |
For driver performance analysis it usefull to be able to disable as much as possible the GPU interaction so that one can profile the userspace only. Signed-off-by: Jerome Glisse <jglisse@redhat.com> | |||
2010-11-10 | gallivm: implement indirect addressing over inputs | Zack Rusin | |
Instead of messing with the callers simply copy our inputs into a alloca array at the beginning of the function and then use it. Reviewed-by: José Fonseca <jfonseca@vmware.com> | |||
2010-11-10 | r300g: turn magic numbers into names in the hyperz code | Marek Olšák | |
2010-11-10 | r300g: rename has_hyperz -> can_hyperz | Marek Olšák | |
2010-11-10 | r300g: mention ATI in the renderer string | Marek Olšák | |
2010-11-10 | ws/r600: match bo_busy shared/fence logic in bo_wait | Keith Whitwell | |
Fixes crash in piglit depthrange-clear. | |||
2010-11-09 | gallivm: Allocate TEMP/OUT arrays only once. | José Fonseca | |
2010-11-09 | gallivm: implement indirect addressing of the output registers | Zack Rusin | |
2010-11-09 | winsys/xlib: Add cygwin to SConscript. | Vinson Lee | |
Fixes SCons NameError exception on Cygwin. | |||
2010-11-09 | r600: fix my pessimism about PIPE_TRANSFER_x flags | Keith Whitwell | |
For some reason I though we needed the _DISCARD flag to avoid readbacks, which isn't true at all. Now write operations should pipeline properly, gives a good speedup to demos/tunnel. | |||
2010-11-09 | r600g: translate ARR instruction | Keith Whitwell | |
2010-11-09 | r600g: attempt to turn on DXTn formats | Keith Whitwell | |
Seems to sort-of work for non-mipmapped textures. Better than just black anyway. | |||
2010-11-09 | r600g: avoid recursion with staged uploads | Keith Whitwell | |
Don't use an intermediate for formats which don't support hardware blits under u_blitter.c, as these will recursively attempt to create a transfer. | |||
2010-11-09 | softpipe: can't no-op depth test stage when occlusion query is enabled | Brian Paul | |
Fixes http://bugs.freedesktop.org/show_bug.cgi?id=31479 | |||
2010-11-10 | st/dri: Add support for surfaceless current contexts. | Chia-I Wu | |
Tested with Wayland. | |||
2010-11-09 | gallium/targets: Trivial crosscompiling fix | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> | |||
2010-11-09 | svga/drm: Optionally resolve calls to powf during link-time | Thomas Hellstrom | |
When linked with certain builds of libstdc++, it appears like powf is resolved by a symbol in that library. Other builds of libstdc++ doesn't contain that symbol resulting in a linker / loader error. Optionally resolve that symbol and replace it with calls to logf and expf. Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> | |||
2010-11-09 | st/egl: Fix build for include files in nonstandard places | Thomas Hellstrom | |
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com> | |||
2010-11-09 | scons: build the xorg state trackers only when env includes drm | Zack Rusin | |
2010-11-08 | graw: Add struct pipe_surface forward declaration. | Vinson Lee | |
Fixes this GCC warning. graw.h:93: warning: 'struct pipe_surface' declared inside parameter list graw.h:93: warning: its scope is only this definition or declaration, which is probably not what you want | |||
2010-11-08 | r600g: implement texture_get_handle (needed for eglExportDRMImageMESA) | Benjamin Franzke | |
2010-11-08 | graw: Export graw_save_surface_to_file(). | Michal Krol | |
Allows applications to dump surfaces to file without referencing gallium/auxiliary entry points statically. Existing test apps have been modified such that they save the contents of the fronbuffer only when the `-o' option's specified. | |||
2010-11-08 | os: Open file streams in binary mode. | Michal Krol | |
Otherwise we'll get garbled data on Windows. | |||
2010-11-07 | r600g: Mention AMD in the renderer string. | Henri Verbeet | |
2010-11-05 | scons: Unify state tracker SConscripts | Jakob Bornecrantz | |
2010-11-05 | scons: Move dependancy checks to the main gallium scons file | Jakob Bornecrantz | |
2010-11-05 | scons: Check for libdrm_[intel|radeon] as well | Jakob Bornecrantz | |
And run SConscripts if they are present. Also make dri depend on both drm and x11. | |||
2010-11-05 | scons: Detabify | Jakob Bornecrantz | |
Drivers scons files for a later time | |||
2010-11-05 | scons: Remove old pipebuffer SConscript | Jakob Bornecrantz | |
2010-11-05 | softpipe: disable vertex texturing with draw/llvm | Brian Paul | |
This is a temporary work around to prevent crashes with glean/glsl1 (for example) which try to do vertex shader texturing. | |||
2010-11-05 | gallivm: add const qualifiers, fix comment string | Brian Paul | |
2010-11-05 | gallivm: alloca() was called too often for temporary arrays | Brian Paul | |
Need to increment the array index to point to the last value. Before, we were calling lp_build_array_alloca() over and over for no reason. | |||
2010-11-04 | llvmpipe: added some debug assertions, but disabled | Brian Paul | |
2010-11-04 | tgsi: remove unused function | Brian Paul | |
2010-11-04 | gallivm: implement execution mask for scatter stores | Brian Paul | |
2010-11-04 | gallivm: added lp_elem_type() | Brian Paul | |
2010-11-04 | gallivm: add pixel offsets in scatter stores | Brian Paul | |
We want to do the scatter store to sequential locations in memory for the vector of pixels we're processing in SOA format. | |||
2010-11-04 | gallivm: added debug code to dump temp registers | Brian Paul | |
2010-11-04 | graw/gdi: Fix window dimensions. | Michal Krol | |
The requested window size is of the client area, so account for surrounding borders and bars when creating the window. | |||
2010-11-04 | scons: Hook-up graw-gdi target. | Michal Krol | |
2010-11-04 | graw/gdi: Initial commit. | Michal Krol | |
2010-11-04 | r300g: Do not use buf param before checking for NULL. | Guillermo S. Romero | |
Commit 8dfafbf0861fe3d2542332658dd5493851053c78 forgot to update r300g. There is a buf == NULL check, but buf is used before for var init. Tested-by: Guillermo S. Romero <gsromero@infernal-iceberg.com> | |||
2010-11-04 | tgsi/build: Reduce interface clutter. | Michal Krol | |
Make private those functions that are used internally only. |