summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-07-19fix drawables not getting freed if context is made current with new drawablesRoland Scheidegger
2007-07-18fix mesa's handling of fbo's / window fb (again)Roland Scheidegger
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.
2007-07-18more fixes for mesa's fbo handling (fixes tests/fbotest1/2)Roland Scheidegger
2007-07-18swapbuffers with non-current contexts, cleanupsRoland Scheidegger
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.
2007-07-17get rid of checks for old ddxRoland Scheidegger
2007-07-17remove some more old stuffRoland Scheidegger
2007-07-17get rid of more pageflip/rotation code.Roland Scheidegger
2007-07-17fix up mesa's probably bogus framebuffer updates with different read/write fbsRoland Scheidegger
2007-07-17fix mesa fb bindingRoland Scheidegger
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).
2007-07-17remove old code, remaining bits of static handles, disable (no longer ↵Roland Scheidegger
functional anyway) rotation code
2007-07-17increase MAX_RELOCS so never run out before batch buffer is full (fixes ↵Roland Scheidegger
xdemos/shape)
2007-07-16fix resize bugs (fb size updated too late), fix typos, cleanups...Roland Scheidegger
2007-07-16small cleanupsRoland Scheidegger
2007-07-16get rid of more cliprects...Roland Scheidegger
2007-07-16more cliprect elimination (swrast span)Roland Scheidegger
2007-07-16get rid of more fake cliprects (drawpixel), and enable blit draw with scissorRoland Scheidegger
2007-07-16get rid of more cliprects (readpixel)...Roland Scheidegger
2007-07-16allow blit path for read pixels if pack->alignment isn't 1.Roland Scheidegger
pack->alignment doesn't matter usually if the image is sufficiently aligned anyway. Speeds up some tests/readrate cases by a factor of 100 (since the pack->alignment default which noone ever bothers to change is 4).
2007-07-15change back driver change from previous commitRoland Scheidegger
2007-07-15fix bogus fb/drawable information (fixes xdemos/wincopy)Roland Scheidegger
the framebuffer objects attached to drawables can have invalidate state associated with them, since for the window framebuffer this is per-context state and not per-fbo state. Since drivers may rely on that information (otherwise would need to check if currently the window-framebuffer is bound in a lot of places) fix it up in _mesa_make_current (ugly).
2007-07-15fix the texture copypixels pathRoland Scheidegger
2007-07-15begin getting rid of fake clip rects (copy_pixel)Roland Scheidegger
2007-07-14fix assertion, z/stencil swarst readback, (still looks suspicious) ↵Roland Scheidegger
copyTexSubimage
2007-07-13bugfixes (wrt fb updates), cleanupsRoland Scheidegger
move drawable validation back to where it was now that the driDrawable information isn't used directly anymore. Fix bogus fb updates (the context we get for SwapBuffer processing may not have the drawable being processed attached!) glthreads behaves a bit better but still not correct.
2007-07-12don't use driDrawable information directly, don't resize at makecurrentRoland Scheidegger
driDrawable information now isn't used in most parts of the driver. makecurrent only updates fb information when the context is new (driDrawable is still updated by the dri common code).
2007-07-11restrict blitted area to size of rendered areaRoland Scheidegger
2007-07-11Fix screen corruption on resize.Keith Whitwell
Move buffer resize check to immediately after swapbuffers. Update cliprects inside the locked region of swapbuffers.
2007-07-11remove bogus assertion, change drawable updatesRoland Scheidegger
don't update driDrawable information until later at all (blit needs fixing).
2007-07-11drop some more code no longer neededRoland Scheidegger
2007-07-11some fixes, fake frontbufferRoland Scheidegger
still doesn't work quite right (resize). Fake frontbuffer doesn't copy in real frontbuffer. Don't even think about doing rotation/page flip/triple buffering for now... More cleanups needed (fake cliprects etc.)
2007-07-10copybuffer/cliprect fixupsRoland Scheidegger
2007-07-10First attempt at using private back/z buffers.Roland Scheidegger
Allocate and use private back and z/stencil buffers. This is still very broken.
2007-07-04r300: only init swtcl on tcl-less cardsDave Airlie
2007-07-03added vec2(vec4) constructor, bug 11404Brian
2007-07-03add code for stpq, rgba writemasks in make_writemask(), bug 11404Brian
2007-07-03fix StepX/StepY typoBrian
2007-07-03use _mesa_unpack_stencil_span() in draw_stencil_pixels(), bug 11457Brian
2007-07-03fix GL_DOT3_RGBA texture combiner mode in generated fragment programs (bug ↵Roland Scheidegger
#11030)
2007-07-02add const to wglSetPixelFormat() to match .h declarationBrian
2007-07-02avoid unnecessary clamping of depth values (bug 11448)Brian
2007-07-02r300: fix compiz crash on swtcl - doesn't fix compiz though.Dave Airlie
Compiz for some reason looks like ass, everything with textures looks like it has a 2x width/height multiplier on the texture coords...
2007-07-01Compute the amount of time to sleep on idle event using timers as reference.Claudio Ciccani
2007-07-01Fixed initialization of render buffer and deinitialization of context.Claudio Ciccani
2007-07-01r300: oops wrong logic for swtclDave Airlie
2007-07-01r300: oops turn back off cmd buf debuggingDave Airlie
2007-07-01Merge branch 'r300-swtcl'Dave Airlie
2007-07-01fix tabbingDave Airlie
2007-07-01r300: add authorshipDave Airlie
2007-07-01r300: remove some unused codeDave Airlie
2007-07-01r300: cleanup some of the swtcl codeDave Airlie