Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-04-06 | r300-gallium: Skeleton for integrating into the python statetracker. | José Fonseca | |
2009-04-04 | radeon: A bit of indent and line break cleanup. | Corbin Simpson | |
2009-04-04 | radeon: If the CS emit fails, dump it to stderr. | Corbin Simpson | |
2009-04-04 | Add scons build support for radeon/r300. | Corbin Simpson | |
2009-04-04 | radeon: Fix compile warnings, compile errors. | Corbin Simpson | |
2009-03-25 | scons: Support building with the Windows SDK. | José Fonseca | |
x86_64 is also supported. | |||
2009-03-24 | nouveau: Frontbuffer needs to be marked as linear. | Younes Manton | |
2009-03-20 | winsys/gdi: Init state tracker's per-thread data. | Michal Krol | |
2009-03-18 | nouveau: rewrite winsys in terms of drm_api, support dri2 state tracker | Ben Skeggs | |
drm_api is a set of hooks used by the dri2 state tracker, this wraps our dri1 code around the same set of hooks. Currently the dri2 build will produce nouveau_dri2.so which you'll need to install as nouveau_dri.so if you wish to try it. The dri2 state tracker doesn't make it easy for a driver to support both paths in the same binary. | |||
2009-03-15 | radeon-gallium: Add my R580 to the xorg PCI ID list. | Corbin Simpson | |
At some point, going to have to grab the big list from xf86-video-ati. | |||
2009-03-13 | gallium: Remove do_flip argument from surface_copy | Jakob Bornecrantz | |
I should have gotten most uses and implementation correctly fixed, but things might break. Feel free to blame me. | |||
2009-03-10 | radeon-gallium: Unbreak non-RADEON_SOFTPIPE. | Corbin Simpson | |
Hehe, sleep may be necessary now. | |||
2009-03-10 | radeon-gallium: Unbreak RADEON_SOFTPIPE. | Corbin Simpson | |
And there was much rejoicing. | |||
2009-03-07 | nouveau: use bo_handle_ref instead of bo_fake to get front-buffer bo | Ben Skeggs | |
This'll work on non-GEM also as the DDX will just pass an offset, and libdrm_nouveau knows to treat "handle" as a VRAM offset. When running on GEM the DDX (it doesn't yet, but will) passes a buffer handle instead. | |||
2009-03-07 | nouveau: fix more breakage from pipe_reference.. | Ben Skeggs | |
2009-03-07 | Fix nouveau_pipe_create() / nouveau_context_init(): raise an error if the ↵ | Victor Stinner | |
screen/pipe creation failed | |||
2009-03-06 | st/xorg: Install to XORG_DRIVER_INSTALL_DIR | Joel Bosveld | |
2009-03-05 | radeon-gallium: fix dri2 build | Joakim Sindholt | |
2009-03-04 | radeon-gallium: Add Xorg state tracker Radeon winsys stub. | Corbin Simpson | |
2009-03-04 | radeon-gallium: Only build drivers for state trackers that are enabled. | Corbin Simpson | |
2009-03-04 | radeon-gallium: Enable EGL and Xorg state trackers. | Corbin Simpson | |
Compile-tested only, but I have high hopes. | |||
2009-03-04 | radeon-gallium: DRI2 state tracker, part 3. | Corbin Simpson | |
Properly setup the build process for adding in xorg and egl trackers, and finally put radeon_context and radeon_screen to bed. | |||
2009-03-05 | intel: Fixup from refcount changes | Jakob Bornecrantz | |
2009-03-04 | cell: update cell driver after gallium reference count changes | Brian Paul | |
2009-03-04 | gallium: Remove some superfluous instances of #include "p_inlines.h". | Michel Dänzer | |
2009-03-04 | gallium: Unify reference counting. | Michel Dänzer | |
The core reference counting code is centralized in p_refcnt.h. This has some consequences related to struct pipe_buffer: * The screen member of struct pipe_buffer must be initialized, or pipe_buffer_reference() will crash trying to destroy a buffer with reference count 0. u_simple_screen takes care of this, but I may have missed some of the drivers not using it. * Except for rare exceptions deep in winsys code, buffers must always be allocated via pipe_buffer_create() or via screen->*buffer_create() rather than via winsys->*buffer_create(). | |||
2009-03-03 | r300-gallium, radeon-gallium: Continue migration to DRI2 state_tracker, part 2. | Corbin Simpson | |
Almost there. glxinfo still works, and AFAICT so does trivial/clear. | |||
2009-03-03 | r300-gallium, radeon-gallium: Begin migration to DRI2 state tracker, part 1. | Corbin Simpson | |
s/migration/migrane/ , actually. Anyway, this has working glxinfo... | |||
2009-03-03 | st/drm: s/hocks/hooks/ | Jakob Bornecrantz | |
2009-03-03 | winsys: return null for DONTBLOCK flag on existing winsys | Keith Whitwell | |
Add code so that existing driver behaviour doesn't change. | |||
2009-03-03 | intel: Add Xorg driver | Jakob Bornecrantz | |
2009-03-03 | intel: Add dri2 driver for gallium | Jakob Bornecrantz | |
2009-03-03 | intel: Increase max relocs per batchbuffer | Jakob Bornecrantz | |
2009-03-02 | g3dvl: Grab surface pointer when flushing front buffer in SP winsys. | Younes Manton | |
2009-02-27 | radeon: Add DRM stubs. | Corbin Simpson | |
Nothing really of note, unfortunately. | |||
2009-02-27 | intel: Use flink for global buffer ids | Jakob Bornecrantz | |
Also fix minor drm api change | |||
2009-02-25 | g3dvl: Update winsys stuff. | Younes Manton | |
2009-02-25 | intel: Adopt to the new drm_api.h | Jakob Bornecrantz | |
2009-02-25 | i915: Clean up i915_winsys.h a bit | Jakob Bornecrantz | |
2009-02-24 | cell: added null ptr check in xm_flush_frontbuffer() | Brian Paul | |
2009-02-23 | gallium: Install winsys/drm to DESTDIR rather than / | Joel Bosveld | |
2009-02-20 | gallium: Improve recursive makefiles | Jakob Bornecrantz | |
2009-02-20 | gallium: Improve winsys dri template Makefile | Jakob Bornecrantz | |
LIBNAME_EGL had to be removed since if you didn't set it (nobody set it anyways) make would get it confused it with the $(TOP)/lib/gallium target. | |||
2009-02-20 | intel: Use new makefile template for drm gem | Jakob Bornecrantz | |
2009-02-20 | nouveau: Use new makefile template for drm common | Jakob Bornecrantz | |
2009-02-20 | nouveau: reenable all the non-nv50 pipe drivers | Ben Skeggs | |
They still won't build yet, but anyway.. | |||
2009-02-20 | nv50: rework for texture_transfer changes | Ben Skeggs | |
2009-02-19 | gallium/winsys/xlib: Fix build with USE_XSHM undefined. | Michel Dänzer | |
2009-02-19 | wgl: Use a separate .DEF for MinGW | José Fonseca | |
gnu linker fails to resolve the @n symbols, unless: - they are listed verbatim in the .def - they are already linked. And mingw's .def parser is slightly incompatible with MSVC in respect with underscores. Will try to work with upstream to fix this, but for now there is no option other to use seperate .def for mingw. | |||
2009-02-19 | gdi: Update for texture/surface interface changes. | José Fonseca | |