Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-07-10 | i915tex: Only wait for vblank when really necessary. | Michel Dänzer | |
This avoids superfluous waits for vblank timing out under some circumstances. | |||
2007-03-19 | i915tex: The intended triple buffering fix. | Michel Dänzer | |
Making modifications while the editor spawned by git-commit was suspended didn't have the intended effect. | |||
2007-03-19 | i915tex: Fix triple buffering after recent Mesa core changes. | Michel Dänzer | |
Remove superfluous _mesa_resize_framebuffer call which is now harmful because it causes the third renderbuffer to have width/height 0, so Mesa refuses to render to it. In the long term, it would be nice to remove the hack in intel_alloc_window_storage in favour of a proper Mesa interface for flipping between more than two colour buffers. | |||
2007-03-12 | i915tex: Don't crash when intel_fb->color_rb[i] is NULL. | Michel Dänzer | |
This can be the case on some systems when running glxinfo. | |||
2007-03-10 | i915tex: Fix build against libdrm git... | Michel Dänzer | |
2007-03-10 | i915tex: Fix build against released version of libdrm. | Michel Dänzer | |
2007-03-09 | i915tex: Wait for pending scheduled flips before switching vsync pipe. | Michel Dänzer | |
This avoids hangs when the vblank sequence numbers are not in sync between pipes, in particular when they run at different refresh rates. | |||
2007-03-09 | i915tex: Sync pages between pipes immediately again. | Michel Dänzer | |
This should be safe now that we no longer use the MI_WAIT_FOR_EVENT instruction incorrectly and should also work correctly with applications that render to the front buffer. | |||
2007-03-09 | i915tex: Do not wait for pending flips on both pipes at the same time. | Michel Dänzer | |
The MI_WAIT_FOR_EVENT instruction does not support waiting for several events at once, so this should fix the lockups with page flipping when both pipes are enabled. | |||
2007-02-28 | i915tex: Sync pages differently when crossing pipe borders. | Michel Dänzer | |
Don't flip (up to twice) immediately but just arrange things such that the pages will be in sync on both pipes on the next flip. | |||
2007-02-28 | i915tex: Also update intel_rb->vbl_pending when scheduled swap is not a flip. | Michel Dänzer | |
2007-02-22 | i915tex: Schedule flips when possible. | Michel Dänzer | |
Also move vsync related state from context to window, so it's possible to schedule several flips ahead of time with triple buffering. | |||
2007-02-20 | i915tex: Triple buffering support, only effective with page flipping so far. | Michel Dänzer | |
Pending flips are tracked per renderbuffer and the colour renderbuffer attachments of window framebuffer objects are rotated on flips to avoid stalling the pipeline for pending flips unnecessarily. | |||
2007-02-20 | intelWindowMoved: Some debugging output was accidentally left always enabled. | Michel Dänzer | |
2007-02-20 | intelRotateWindow: Only use back buffer and cliprects in very specific cases. | Michel Dänzer | |
2007-02-20 | i915tex: Support page flipping on both CRTCs independently. | Michel Dänzer | |
No longer track page flipping state per context but per window, via struct intel_framebuffer which wraps struct gl_framebuffer for windows. | |||
2007-02-20 | i915tex: Make page flipping work again. | Michel Dänzer | |
2006-12-07 | i915tex: Recalculate viewport related hardware state in intelWindowMoved(). | Michel Dänzer | |
This fixes vertically displaced rendering with some apps like Google Earth. Simplify other parts of the function somewhat. | |||
2006-11-02 | Fix GL_EXT_packed_depth_stencil crash, but shadowtex still broken | Brian Paul | |
2006-11-02 | remove GetBufferSize code | Brian Paul | |
2006-11-01 | Remove x/y/width/height parameters from Clear functions. | Brian Paul | |
2006-11-01 | Don't use the x/y/width/height params passed to Clear(). Get them | Brian Paul | |
after locking. Next: remove the params altogether. | |||
2006-11-01 | Import texmem i915 driver to its new location as i915tex. | Keith Whitwell | |