summaryrefslogtreecommitdiffstats
path: root/src/mesa
Commit message (Collapse)AuthorAgeFilesLines
* get cliprect bounds after softpipe_update_derived()Brian2007-08-011-4/+9
|
* Re-implement intelClear() in terms of softpipe_clear(). Pretty simple/small ↵Brian2007-08-014-12/+62
| | | | | | | now. Note: softpipe_clear() should really be renamed to something like pipe_clear_with_blits() and put into a driver-indepedent module...
* More work on glClear.Brian2007-08-016-50/+111
| | | | Add a 'mask' param to region_fill() to help with clearing combined Z/stencil buffers, glColorMask, etc.
* s/Z24_S8/S8_Z24/Brian2007-08-011-5/+5
|
* s/Z24_S8/S8_Z24/ (stencil is in the high byte)Brian2007-08-015-33/+36
|
* Checkpoint: glClear changes - working, bug very rough.Brian2007-08-0111-22/+213
|
* Build libsoftpipe.aKeith Whitwell2007-08-0110-33/+114
| | | | | | | | Each pipe driver will build to a .a library, as these will optionally be included in the various DRI drivers (this will make more sense once there is at least one hardware driver...). Not strictly necessary for softpipe, but want to minimize the differences between it and actual hw implementations.
* Remove unused file intel_render.cKeith Whitwell2007-08-011-244/+0
|
* Remove unused fileKeith Whitwell2007-08-011-132/+0
|
* Remove intel_span.[ch]Keith Whitwell2007-08-017-449/+4
|
* sp_z_surface.h is deadBrian2007-07-311-1/+0
|
* Obsolete.Brian2007-07-312-250/+0
|
* Redesign pipe_surface in terms of pipe_region.Brian2007-07-3115-270/+538
| | | | | | struct pipe_buffer goes away. Added basic region functions to softpipe to allocate/release malloc'd regions. Surface-related code is fairly coherent now.
* Lift region-related functions up to the pipe interface.Brian2007-07-3127-287/+342
| | | | | | Some of these functions probably should be driver-private. Note: intel_buffer_object is in p_state.h and should be fixed/removed. There are just a few i915 dependencies in intel_region.c
* re-fix stencil addressing bugBrian2007-07-311-14/+3
|
* Add missing filesKeith Whitwell2007-07-314-0/+1926
|
* Remove references to intel_tris.hKeith Whitwell2007-07-313-3/+0
|
* A version of the i915tex driver with all drawing code removed.Keith Whitwell2007-07-3143-0/+10904
| | | | | | This is intended to support the softpipe development work. More code will be removed and pushed into softpipe until this basicially becomes the DRI/GLX interface for that driver.
* simplify clear.x1,y2,x2,y2 setupBrian2007-07-311-12/+4
|
* In i915/i830_emit_state(), check if state->draw_region is non-null.Brian2007-07-312-14/+16
| | | | This fixes a problem hit by glClear in the samples/stencil.c program.
* fix stencil addressing bugBrian2007-07-311-4/+6
|
* remove obsolete xmesa_get_stencil_surface() stubBrian2007-07-311-11/+0
|
* fix comments and param names for intel_miptree_image_map()Brian2007-07-312-3/+4
|
* fix value returned by intel_new_renderbuffer_fb()Brian2007-07-311-1/+1
|
* fix assertionsBrian2007-07-311-2/+2
|
* Merge branch 'i915tex_privbuffers' into softpipe_0_1_branchKeith Whitwell2007-07-3128-1177/+468
|\ | | | | | | | | | | | | | | | | Conflicts: src/mesa/drivers/dri/i915tex/intel_buffers.c src/mesa/drivers/dri/i915tex/intel_context.c src/mesa/drivers/dri/i915tex/intel_fbo.c src/mesa/drivers/dri/i915tex/intel_pixel_draw.c
| * fix range reduction for sin/cos in i915tex (#11609)Roland Scheidegger2007-07-292-10/+4
| |
| * Fix crashes when the frag prog can't be handled in hardware (#11131)Roland Scheidegger2007-07-294-1/+16
| | | | | | | | | | | | | | | | Must not change to/from swrast after Render.Start or bad things will happen. (Driver will still somewhat incorrectly report an implementation error, and apps can't really figure out if a prog is natively supported as validation is later - could try doing it earlier to give some hint at least, even though native status may still change later due to fog etc.)
| * set the _BaseFormat for window-framebuffers, could hit some assertion otherwiseRoland Scheidegger2007-07-211-0/+15
| |
| * fix bogus recently introduced function param commentsRoland Scheidegger2007-07-201-2/+0
| |
| * minor cleanups, disable debuggingRoland Scheidegger2007-07-206-26/+6
| |
| * remove some more really old ifdefed out code...Roland Scheidegger2007-07-191-48/+0
| |
| * more cleanups (looks pretty reasonable now)Roland Scheidegger2007-07-196-358/+45
| | | | | | | | | | | | remove some already ifdefed out, no longer functional and used code. Don't do our own scissor clipping in the pixeldraw/copy paths, as meas already does that for us...
| * fix drawables not getting freed if context is made current with new drawablesRoland Scheidegger2007-07-191-1/+7
| |
| * fix mesa's handling of fbo's / window fb (again)Roland Scheidegger2007-07-186-41/+77
| | | | | | | | | | | | | | | | Make sure the relevant fields in window fbs get updated at appropriate time (those are NOT the same as fbos!!!), and fix up related code accordingly. This is a bit ugly, but there's a reason the issues section in EXT_fbo is a couple hundred pages long... Hopefully correct now.
| * more fixes for mesa's fbo handling (fixes tests/fbotest1/2)Roland Scheidegger2007-07-183-3/+14
| |
| * swapbuffers with non-current contexts, cleanupsRoland Scheidegger2007-07-184-17/+17
| | | | | | | | | | | | | | manywin got broken (when intelPageflip got no longer called). Make sure that intelFlush is getting called when a context gets unbound, to handle later swapbuffer calls on that context's drawable better. Related, fix non-current cliprects getting used on unbound drawables.
| * get rid of checks for old ddxRoland Scheidegger2007-07-172-4/+3
| |
| * remove some more old stuffRoland Scheidegger2007-07-172-6/+0
| |
| * get rid of more pageflip/rotation code.Roland Scheidegger2007-07-174-66/+6
| |
| * fix up mesa's probably bogus framebuffer updates with different read/write fbsRoland Scheidegger2007-07-171-14/+26
| |
| * fix mesa fb bindingRoland Scheidegger2007-07-174-7/+12
| | | | | | | | | | | | | | | | Make sure that we bind the right buffer (draw or read) when rebinding the window framebuffer (the api doesn't allow binding different draw and read buffers at the same time, but the default window framebuffer is basically 2 fb objects, one for read, one for write, which can be different). Pass both of these two down the driver api (no driver uses this right now).
| * remove old code, remaining bits of static handles, disable (no longer ↵Roland Scheidegger2007-07-179-314/+32
| | | | | | | | functional anyway) rotation code
| * increase MAX_RELOCS so never run out before batch buffer is full (fixes ↵Roland Scheidegger2007-07-171-1/+1
| | | | | | | | xdemos/shape)
| * fix resize bugs (fb size updated too late), fix typos, cleanups...Roland Scheidegger2007-07-165-8/+14
| |
| * small cleanupsRoland Scheidegger2007-07-162-43/+4
| |
| * get rid of more cliprects...Roland Scheidegger2007-07-162-23/+17
| |
| * more cliprect elimination (swrast span)Roland Scheidegger2007-07-161-12/+7
| |
| * get rid of more fake cliprects (drawpixel), and enable blit draw with scissorRoland Scheidegger2007-07-164-64/+87
| |
| * get rid of more cliprects (readpixel)...Roland Scheidegger2007-07-161-76/+91
| |