Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-22 | radeon/fbo: use correct depth texture offset for depth textures | Andre Maasikas | |
2010-01-22 | r600: enable draw_offset | Andre Maasikas | |
fixes some fbo cases (mipmaps, cube textures ..) | |||
2010-01-22 | st/egl_g3d: Rename to st/egl. | Chia-I Wu | |
Simply the name to egl. | |||
2010-01-22 | winsys/drm: Update the options of mklib in Makefile.egl_g3d. | Chia-I Wu | |
Pass -linker, -ldflags, and $(MKLIB_OPTIONS) to mklib. | |||
2010-01-22 | egl: Remove egl_softpipe. | Chia-I Wu | |
With the addition egl_x11_swrast, egl_softpipe is sort of deprecated. The new driver serves the same purpose as egl_softpipe does. It is based on egl_g3d and provides more features. | |||
2010-01-22 | winsys/drm: Add swrast. | Chia-I Wu | |
The swrast winsys always returns NULL when drm_api_create is called. | |||
2010-01-22 | vmware/core: Update for pipebuffer changes. | José Fonseca | |
In particular, delay patching GMR relocations until the buffers are validated, since the buffers relative offset can only be established then. | |||
2010-01-21 | st/mesa: Remove unnecessary header from st_cb_viewport.c. | Vinson Lee | |
2010-01-22 | st/egl: Remove the egl state tracker. | Chia-I Wu | |
The egl_g3d state tracker has support for KMS, and the support is based on the egl state tracker. As egl_g3d provides more features, it should be better to keep only egl_g3d to unify the efforts. | |||
2010-01-22 | egl: Remove USING_EGL and the related drivers. | Chia-I Wu | |
They do not build for a long while and there seems to be no active users. It might be better for them to live in the git histroy. | |||
2010-01-22 | egl: Remove the demo driver. | Chia-I Wu | |
The demo driver has outdated. It is suggested to look at any of the drivers that is functioning. | |||
2010-01-21 | i915g: Remove unnecessary header. | Vinson Lee | |
2010-01-21 | pipebuffer: Remove unnecessary header. | Vinson Lee | |
2010-01-22 | st/egl_g3d: Use glxinit.c from egl_xdri. | Chia-I Wu | |
It is used to fetch the GLX visuals/fbconfigs. Use egl_xdri's version to avoid duplication. It might be better to rewrite that part though. | |||
2010-01-22 | egl_xdri: Add support for DRISW. | Chia-I Wu | |
Try DRISW if both DRI2 and DRI fail. It can also be forced by setting EGL_SOFTWARE. When DRISW is used, single-buffered modes are ignored. | |||
2010-01-21 | draw: Remove unnecessary headers. | Vinson Lee | |
2010-01-22 | egl_xdri: Flush commands on context switch and buffer swap. | Chia-I Wu | |
The corresponding DRI functions does not flush for us. | |||
2010-01-22 | egl_xdri: Report only OpenGL support. | Chia-I Wu | |
It reported OpenGL ES support because some demos did not set EGL_RENDERABLE_TYPE correctly. The demos are fixed. | |||
2010-01-22 | egl_xdri: Do not reinitialize in __glXInitialize. | Chia-I Wu | |
__glXInitialize should return the same GLX display for the same X display. This issue is triggered by a35f6bb207efe3c959bbd16a37f2049e5aceeea9. | |||
2010-01-22 | egl_glx: Report only OpenGL support. | Chia-I Wu | |
It reported OpenGL ES support because some demos did not set EGL_RENDERABLE_TYPE correctly. The demos are fixed. | |||
2010-01-22 | egl: Update driver Makefiles. | Chia-I Wu | |
Update to use the new Makefile.template. | |||
2010-01-22 | egl: Add Makefile.template for EGL drivers. | Chia-I Wu | |
2010-01-22 | winsys/drm: Update Makefile.template. | Chia-I Wu | |
Mainly to respect LDFLAGS and remove unused target $(LIBNAME_EGL). This is based on the patch by Tomáš Chvátal <scarabeus@gentoo.org>. | |||
2010-01-21 | llvmpipe: use some local vars to index step arrays | Brian Paul | |
Saves a few more cycles. | |||
2010-01-21 | llvmpipe: s/inline/INLINE/ | Brian Paul | |
2010-01-21 | llvmpipe: consolidate lp_scene_alloc_aligned() calls | Brian Paul | |
Use just one call instead of four. Good for a few more fps. | |||
2010-01-21 | llvmpipe: re-use a1 var in linear_coef() | Brian Paul | |
2010-01-21 | svga: Remove unused variable. | Vinson Lee | |
2010-01-21 | llvmpipe: area is an int here, not float | Brian Paul | |
2010-01-21 | vmware/core: Flush preemptively the FIFO commands to keep the GMR working ↵ | José Fonseca | |
set within reasonable bounds. | |||
2010-01-21 | vmware/core: Put GMR pool size in a define. | José Fonseca | |
2010-01-21 | vmw/wgl: Update for pipebuffer changes. | José Fonseca | |
This is a minimum change to keep things building and running minimally -- it might cause applications to fail to allocate buffers due to out of GMR memory. A proper update will be commited later. | |||
2010-01-21 | llvmpipe: manually unroll the inputs.step[] setup code | Brian Paul | |
Good for a few more fps in some tests. | |||
2010-01-21 | svga: Remove duplicate code. | José Fonseca | |
2010-01-21 | svga: Remove unused code. | José Fonseca | |
2010-01-21 | svga: Don't swap buffers to system memory -- winsys' responsibility. | José Fonseca | |
2010-01-21 | pipebuffer: Release the lock during map wait. Cleanups. | José Fonseca | |
2010-01-21 | pipebuffer: Swap buffers out to system memory when running out of memory. | José Fonseca | |
2010-01-21 | svga: Avoid synchronization issues when doing SW TNL. | José Fonseca | |
2010-01-21 | mesa: Use pipe_buffer_write_nooverlap where appropriate. | José Fonseca | |
2010-01-21 | util: Set DISCARD & UNSYNCHRONIZED when uploading vertices sequentially. | José Fonseca | |
2010-01-21 | util: Use pipe_buffer_write_nooverlap in blits / mipmap generation. | José Fonseca | |
2010-01-21 | gallium: New inline to write buffers which avoids synchronization. | José Fonseca | |
2010-01-21 | gallium: Set PIPE_BUFFER_USAGE_DISCARD flag in pipe_buffer_write. | José Fonseca | |
2010-01-21 | gallium: Remove temporary hack for the absence of a discard flag. | José Fonseca | |
PIPE_BUFFER_USAGE_DISCARD flag now exists. | |||
2010-01-21 | svga: Follow buffer usage semantics properly. | José Fonseca | |
It's necessary to download buffers from the host always, except if the buffer is undefined, because: - just PIPE_BUFFER_USAGE_CPU_WRITE doesn't guarantee all data is written -- old contents may still pierce through - PIPE_BUFFER_USAGE_DISCARD refers to a range, not the whole buffer, so unless we track which parts have been modified and not we still need to download the data. | |||
2010-01-21 | st/xorg: Remove unnecessary headers. | Vinson Lee | |
2010-01-21 | llvmpipe: added simple perf/statistics counting facility | Brian Paul | |
Currently counting number of tris, how many tiles of each size are fully covered, partially covered or empty, etc. Set LP_DEBUG=counters to enable. Results are printed upon context destruction. | |||
2010-01-21 | r200: fix CS section size mismatch | Roland Scheidegger | |
Partial fix for fdo bug 25544 The tex handling will still need CS drm changes, see bug 25544 for more. | |||
2010-01-21 | llvmpipe: Remove unnecessary headers. | Vinson Lee | |