Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-01-03 | gdi: Don't generate import libraries for opengl32.dll. | José Fonseca | |
Both MinGW and MSVC include opengl32 import libraries, and its safer to always use those. | |||
2009-12-27 | Merge branch 'mesa_7_6_branch' into mesa_7_7_branch | Brian Paul | |
Conflicts: src/gallium/auxiliary/util/u_network.c src/gallium/auxiliary/util/u_network.h src/gallium/drivers/i915/i915_state.c src/gallium/drivers/trace/tr_rbug.c src/gallium/state_trackers/vega/bezier.c src/gallium/state_trackers/vega/vg_context.c src/gallium/state_trackers/xorg/xorg_crtc.c src/gallium/state_trackers/xorg/xorg_driver.c src/gallium/winsys/xlib/xlib_brw_context.c src/mesa/main/mtypes.h | |||
2009-12-22 | xlib: Use C-style comments. | Vinson Lee | |
2009-12-14 | mesa: Add missing $(DESTDIR) support to src/gallium/winsys/xlib/Makefile | Matthew Bell | |
2009-12-12 | i915g: Silence unused value warning in intel_drm_get_device_id. | Vinson Lee | |
2009-12-02 | cell: added tex_usage param to xm_surface_buffer_create() | Brian Paul | |
2009-09-11 | llvmpipe: asst fixes for 'make linux-llvmpipe' | Brian Paul | |
2009-09-03 | gallium/xlib: silence uninitialized var warning | Brian Paul | |
2009-09-03 | i915g: Up the number of relocs | Jakob Bornecrantz | |
2009-09-03 | i915g: Don't run in sync with HW | Jakob Bornecrantz | |
2009-09-02 | st/xorg: Remove code no longer support by xserver Git master. | Michel Dänzer | |
Shouldn't be necessary with older versions either. | |||
2009-09-01 | scons: Tool for LLVM. Gracefully disable llvmpipe if LLVM not found. | José Fonseca | |
2009-09-01 | i915g: Implement new winsys | Jakob Bornecrantz | |
2009-08-31 | nouveau: fix for dri state tracker changes | Ben Skeggs | |
2009-08-31 | nouveau: hack winsys to compile again, it's broken still however | Ben Skeggs | |
2009-08-30 | xlib: Implement lp_winsys::destroy. | José Fonseca | |
2009-08-29 | xlib: Implement llvmpipe lp_winsys interface. | José Fonseca | |
2009-08-29 | xlib: Update llvmpipe integration for changes in master. | José Fonseca | |
2009-08-29 | llvmpipe: add missing break in xlib _init() | Brian Paul | |
2009-08-29 | llvmpipe: Allow to build without udis86. | José Fonseca | |
2009-08-29 | llvmpipe: Disassemble generated x86 code. | José Fonseca | |
2009-08-29 | xlib: Complete llvmpipe integration. | José Fonseca | |
2009-08-29 | xlib: Integrate with llvmpipe. | José Fonseca | |
Actually, the makefile/sconscript changes were already commit by mistake. | |||
2009-08-28 | i915g: Don't forget to init buffer ptrs | Jakob Bornecrantz | |
2009-08-28 | r300g: pretty up the new drm code a bit | Joakim Sindholt | |
As it turns out, I made some boners. This corrects them (I hope) | |||
2009-08-28 | r300g: support new drm_api | Joakim Sindholt | |
2009-08-28 | drm_api: Operate on textures instead of buffers | Jakob Bornecrantz | |
Most use cases just got the buffer from the texture and then called into one of the get_handle functions. Also with this patch it would be easier to move to a generic function for getting handles from textures and textures from handles, that is exposed via the screen. | |||
2009-08-28 | st/xorg: Pass dri driver name as driverName on screen | Jakob Bornecrantz | |
2009-08-26 | egl_softpipe: Make winsys and pipe screen per display. | Chia-I Wu | |
This is to allow a driver to drive multiple displays. Remove the use of _EGL_PLATFORM_X along the way. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-24 | xlib: fix single buffer window resize bug | Brian Paul | |
When a single-buffered window was resized the new window size was never detected. This fix that, but there's still a bug which causes window contents corruption for certain window sizes... | |||
2009-08-22 | i915g: Remove bad assert on fence | Jakob Bornecrantz | |
2009-08-21 | egl_softpipe: Do not flush unlinked context. | Chia-I Wu | |
An unlinked context is destroyed after _eglMakeCurrent. Flushing such context would cause segfault. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-18 | radeon-gallium: Oh, look, we *do* already support DONTBLOCK. | Corbin Simpson | |
Well, okay, the kernel doesn't, but that's no excuse for us! :3 | |||
2009-08-18 | radeon-gallium: Stop using outdated ioctls. | Corbin Simpson | |
2009-08-18 | Revert "r300-gallium, radeon-gallium: Nuke gb_pipes from orbit." | Corbin Simpson | |
This reverts commit 6a40d1e9d96f8e8c57bc3bbd6f567cacd4471f59. Turns out that we *do* need these for OQ after all. Go figure. Conflicts: src/gallium/winsys/drm/radeon/core/radeon_r300.h | |||
2009-08-18 | egl/xlib: move call to create_configs() after we set the Xdpy field | Brian Paul | |
2009-08-18 | egl: Some per-driver data should be per-display. | Chia-I Wu | |
Move some fields of _EGLDriver to _EGLDisplay. It also becomes unnecessary to pass _EGLDisplay to drivers when _eglMain is called. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-18 | egl: Overhaul driver API. | Chia-I Wu | |
The motivation is so that drivers do not need to look up and check for bad display, context, and etc. It also becomes unnecessary for drivers to call the link functions. This commit makes eglapi.[ch] do the lookup and check. As a result, the driver API is overhauled, and almost all sources and drivers need update. The updates are mainly find and replace with human brains. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> | |||
2009-08-13 | gallium/drm: Handle circular dependencies in the auxiliary libraries with make. | Michel Dänzer | |
2009-08-11 | gallium/xlib: add missing tex_usage parameter | Brian Paul | |
2009-08-11 | gallium/egl: add missing tex_usage parameter | Brian Paul | |
2009-08-11 | gallium/xlib: add missing tex_usage parameter | Brian Paul | |
2009-08-12 | i915g: Reduce max relocs | Jakob Bornecrantz | |
2009-08-11 | i915g: Implement surface_buffer_create for softpipe | Jakob Bornecrantz | |
In order to run softpipe on st/xorg we need this function | |||
2009-08-08 | i915g: Don't try to free a mapped buffer at shutdown | Jakob Bornecrantz | |
2009-08-06 | i915g: Compile with scons | Jakob Bornecrantz | |
2009-08-06 | i915g: Always run in sync with the HW | Jakob Bornecrantz | |
2009-08-06 | i915g: The i915 seems more happier with sampler domain so lets use that | Jakob Bornecrantz | |
2009-08-06 | i915g: Switch to mapping the batch buffer instead of using subdata | Jakob Bornecrantz | |
2009-08-05 | egl_softpipe: Add support for pbuffer binding. | Chia-I Wu | |
This adds support for eglBindTexImage and eglReleaseTexImage. They rely on the state tracker to do the real work. Signed-off-by: Chia-I Wu <olvaffe@gmail.com> |