summaryrefslogtreecommitdiff
path: root/src/mesa/drivers
AgeCommit message (Collapse)Author
2007-11-05remove some struct declsBrian
2007-11-05s/intelDisplayBuffer/intelDisplaySurfaceBrian
2007-11-05simplify intelSwapBuffers()Brian
2007-11-05remove useless codeBrian
2007-11-05remove disabled vblank/sync codeBrian
2007-11-05disable vblank/sync codeBrian
2007-11-05remove dead pageflip codeBrian
2007-11-05disable page flip codeBrian
2007-11-05replace IntelFlush(), FLUSH_VERTICES(), etc. with st_flush() callBrian
2007-11-05remove extern decls for non-existant functionsBrian
2007-11-05#include clean-ups, fixesBrian
2007-11-05comment about renderbuffers vs. surfacesBrian
2007-11-05remove some dead code, clean-upsBrian
2007-11-05more clean-up in intelDisplayBuffer()Brian
2007-11-01Start re-working SwapBuffers.Brian
intelCopyBuffer() is now intelDisplayBuffer(): it displays the given surface in the on-screen window. Added a pipe_surface parameter to winsys->flush_frontbuffer(). Front buffer rendering/flushing actually works now. But, we should only allocate the front surface on demand...
2007-11-01Use new state tracker context/destroy funcs with wrap Mesa context.Brian
2007-11-01remove _mesa_init_driver_functions()Brian
2007-10-31fix some breakage from lifting vbo/tnl codeBrian
2007-10-31move a few lines of codeBrian
2007-10-31Lift VBO/tnl stuff up out of driversBrian
2007-10-31remove intelInvalidateStateBrian
2007-10-31re-enable fb size assertions which were previously disabledBrian
2007-10-30Set _NEW_BUFFERS in glRead/DrawBuffer().Brian
Previously, we set _NEW_PIXEL and _NEW_COLOR in these functions, respectively. That correponds to the GL attribute groups, but doesn't make much sense otherwise. This could improve validation efficiency in a few places too. It looks like all the drivers are already checking for _NEW_BUFFERS in the right places (since that's the bit for FBO state) so we can trim out _NEW_PIXEL and _NEW_COLOR at any time.
2007-10-29Rename 'mms-config.' to 'mms.config'.Michal Krol
It looks like Windows does not like filenames ending with a dot, in effect renaming it to 'mms-config'.
2007-10-29Update intel_is_format_supported.José Fonseca
2007-10-29Fix i915simple build.José Fonseca
2007-10-28Replace supported_formats with is_format_supported interface.Michal Krol
The old supported_formats interface returned a list of formats supported by a pipe/winsys implementation. This was reasonable when gallium had a fixed list of predefined format. Now things has changed and the definition of PIPE_FORMAT is more flexible. The new shiny is_format_supported interface gets PIPE_FORMAT as an argument and returns a boolean whether this particular format is supported.
2007-10-27Remove remnants of softpipe_surface.Brian
This is the last of the clean-up following the change which moved surface allocation to the winsys layer.
2007-10-26surface_alloc() is now a winsys function.Brian
This allows surfaces to be allocated without a rendering context. A few loose ends to resolve, but in working condition.
2007-10-26Actually move region_alloc() and region_release() to intel_winsys.José Fonseca
2007-10-25Move region_alloc() and region_release() to pipe_winsys.Brian
This allows regions to be allocated w/out a rendering context.
2007-10-25Move the get/put_tile() functions to pipe_context.Brian
The _rgba versions are temporary until the state tracker is updated.
2007-10-24a bit more work for optimizing clears in tile cache (not enabled yet)Brian
2007-10-24added a pipe->flush() call in xmesa_clear()Brian
2007-10-22don't apply ColorMask to main gcBrian
2007-10-22don't use GL types for get/put_tile() paramsBrian
2007-10-20Remove obsolete read/write_quad() functionsBrian
2007-10-20use combined depth/stencil buffer when possibleBrian
2007-10-19don't alloc region in xmesa_surface_alloc(), fixes a mem leakBrian
2007-10-19clamp/clip in put_tile(), move softpipe_init_surface_funcs() callBrian
2007-10-18Alternate CopyPixels path based on get/put_tile().Brian
For some drivers (like Xlib) it's not possible to treat the front/back color buffers as pipe_regions. So pipe->region_copy() won't work. Added a new state tracker field indicating if we can use regions for colorbuffer accesses. This should probably be re-considered someday...
2007-10-14implement put_tile()Brian
2007-10-14accum buffer supportBrian
2007-10-11implement intel_user_buffer_create()Brian
2007-10-11Initial support for user-space buffer objects.Brian
Basically, add userBuffer/Data/Size fields to _DriBufferObject, check those fields in driBOMap/Unmap(). New driGenUserBuffer() function.
2007-10-10implement the user_buffer_create() functionBrian
2007-10-03intel_winsys: Adapt to DRM changes (again).Michel Dänzer
It was decided after all to stick to 'pipes' here, even though the actual meaning is now 'planes'.
2007-09-18intel_winsys: Disable scheduled buffer swaps for now.Michel Dänzer
They don't work with private back buffers yet. This gets vsync working.
2007-09-17update begin/end_query() functionsBrian
2007-09-14intel_winsys: Fix intel_buffer_reference.Michel Daenzer
Correctly clear the pointer to the old buffer (not sure how this could build at all before...) and only reference the new one when its pointer is non-NULL.