http://bugs.freedesktop.org/show_bug.cgi?id=20347
--- Comment #1 from zhao jian 2009-02-26 23:59:15 PST
---
Created an attachment (id=23357)
--> (http://bugs.freedesktop.org/attachment.cgi?id=23357)
xorg.0.log
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
---
http://bugs.freedesktop.org/show_bug.cgi?id=20347
Summary: [945GM UXA] ut2004-demo with tiling on hangs
Product: Mesa
Version: unspecified
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medi
On Thursday, February 26, 2009 1:36:26 pm Jesse Barnes wrote:
> Support the new swapbuffers request using the new page flipping ioctl
> if possible.
>
> This patch still needs some work; there's a bug in the no-flip case that
> causes us to lose track of pixmaps, and the pipe is still hardcoded to
Found a bug in the AIGLX code; can't free the new buffers since we need them.
--
Jesse Barnes, Intel Open Source Technology Center
diff --git a/glx/glxdri2.c b/glx/glxdri2.c
index 4e76c71..28bd3c4 100644
--- a/glx/glxdri2.c
+++ b/glx/glxdri2.c
@@ -131,10 +131,23 @@ __glXDRIdrawableCopySubBuffer(
http://bugs.freedesktop.org/show_bug.cgi?id=20340
--- Comment #1 from Owen Taylor 2009-02-26 15:36:20 PST
---
Created an attachment (id=23345)
--> (http://bugs.freedesktop.org/attachment.cgi?id=23345)
Screenshot of problem
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?
http://bugs.freedesktop.org/show_bug.cgi?id=20340
Summary: Fuzzy textures when drawing 1:1 with GL_LINEAR
Product: Mesa
Version: 7.2
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
On Thursday, February 26, 2009 1:56:52 pm Chris Wilson wrote:
> On Thu, 2009-02-26 at 13:28 -0800, Jesse Barnes wrote:
> > Add a new page flip ioctl to the i915 driver. The new ioctl takes the
> > new drm_i915_gem_page_flip arg, which contains a buffer object target for
> > the flip, an offset int
http://bugzilla.kernel.org/show_bug.cgi?id=12765
--- Comment #1 from [email protected] 2009-02-26 14:32 ---
On Thursday 26 February 2009, Sitsofe Wheeler wrote:
> On Mon, Feb 23, 2009 at 10:48:18PM +0100, Rafael J. Wysocki wrote:
> > This message has been generated automatically as a part
On Thu, 2009-02-26 at 13:28 -0800, Jesse Barnes wrote:
> Add a new page flip ioctl to the i915 driver. The new ioctl takes the new
> drm_i915_gem_page_flip arg, which contains a buffer object target for the
> flip, an offset into that buffer, and other buffer parameters to be used for
> the flip.
Applications that use glXSwapBuffers will benefit without modification. Apps
that use the Mesa copy sub buffer extension won't benefit though.
compiz is in between; it uses swapbuffers for when the whole screen is
damaged, but uses sub buffer copies otherwise. So most of its drawing will
tear
Support the new swapbuffers request using the new page flipping ioctl
if possible.
This patch still needs some work; there's a bug in the no-flip case that
causes us to lose track of pixmaps, and the pipe is still hardcoded to 1,
but that should be easy to fix.
The code is pretty ugly too; it see
Add support for the new DRI2 swapbuffers request by supporting the protocol
and adding a new driver hook to perform the swap. If it fails we'll fall
back to blitting.
Signed-off-by: Jesse Barnes
diff --git a/glx/glxdri2.c b/glx/glxdri2.c
index 4e76c71..b76a786 100644
--- a/glx/glxdri2.c
+++ b/g
Add support to Mesa and the intel driver for the new DRI2 swapbuffers
interface. Uses the new flush hook to make sure any outstanding rendering
is complete before sending the swapbuffers request.
Signed-off-by: Jesse Barnes
diff --git a/include/GL/internal/dri_interface.h
b/include/GL/internal
Hi Jesse,
For the page flipping to work, is there any need to change the old application
to make it work?
Thanks!
Calvin
-Original Message-
From: Jesse Barnes [mailto:[email protected]]
Sent: Thursday, February 26, 2009 1:24 PM
To: [email protected]
Cc: intel-...@lis
Add a new page flip ioctl to the i915 driver. The new ioctl takes the new
drm_i915_gem_page_flip arg, which contains a buffer object target for the
flip, an offset into that buffer, and other buffer parameters to be used for
the flip.
If a flip is already pending on the object in question, the io
This patchset fixes a number of bugs in the last set I sent out that I found
after updating the xf86-video-intel code and testing a bit. Seems solid again
with my modified compiz, but the fallback handling (when we blit instead of
flip) is broken; I'm open to suggestions on how to make the code
http://bugs.freedesktop.org/show_bug.cgi?id=19484
--- Comment #8 from Alex Deucher 2009-02-26 12:13:05 PST ---
Can you try:
Option "DRI" "FALSE"
just to cover all the bases.
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail becau
http://bugs.freedesktop.org/show_bug.cgi?id=19484
--- Comment #7 from Mikko C. 2009-02-26 11:49:31 PST ---
This is still very noticeable with:
Xorg server 1.6.0
Mesa from git
xf86-video-ati from git
drm from git
kde 4.3 from svn
All packages updated today.
--
Configure bugmail: http://b
On Thu, Feb 26, 2009 at 12:23:27PM -0500, Kyle McMartin wrote:
> From: Kyle McMartin
>
> Currently, DRM only accidently builds on powerpc/sparc64/etc, because
> the #ifdef in drm_edid.h was using BIG_ENDIAN instead of __BIG_ENDIAN.
>
> Since there's currently no driver which can use this on powe
From: Kyle McMartin
Currently, DRM only accidently builds on powerpc/sparc64/etc, because
the #ifdef in drm_edid.h was using BIG_ENDIAN instead of __BIG_ENDIAN.
Since there's currently no driver which can use this on powerpc at the
moment (radeon modesetting is not upstream yet...) instead of fa
Dave,
Isn't readl, writel etc. not recommended in new code?
IIRC ldd3 recommends iowrite32 ioread32 etc.
/Thomas
Dave Airlie wrote:
> From: Dave Airlie
>
> The readq/writeq stuff is from Dave Miller, and he
> warns users to be careful about using these. Plans are only
> r600 to use it so far.
http://bugs.freedesktop.org/show_bug.cgi?id=20324
Gordon Jin changed:
What|Removed |Added
Blocks||20277
AssignedTo|dri-
http://bugs.freedesktop.org/show_bug.cgi?id=20324
--- Comment #2 from liuhaien 2009-02-26 00:36:04 PST ---
following is the backtrace from gdb:
#0 0xb7a3c9a0 in i915_emit_state (intel=0x8423ce8) at i915_vtbl.c:327
#1 0xb7a6a0d6 in intel_flush_prim (intel=0x8423ce8) at intel_tris.c:228
#2
http://bugs.freedesktop.org/show_bug.cgi?id=20324
--- Comment #1 from liuhaien 2009-02-26 00:30:20 PST ---
Created an attachment (id=23309)
--> (http://bugs.freedesktop.org/attachment.cgi?id=23309)
xorg conf file
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
-
http://bugs.freedesktop.org/show_bug.cgi?id=20324
liuhaien changed:
What|Removed |Added
Keywords||regression
--
Configure bugmail: http://b
http://bugs.freedesktop.org/show_bug.cgi?id=20324
Summary: [i915 glean]glean case/maskedClear segfault on all i915
platforms
Product: Mesa
Version: unspecified
Platform: Other
OS/Version: Linux (All)
Status: NEW
http://bugzilla.kernel.org/show_bug.cgi?id=12769
--- Comment #2 from [email protected] 2009-02-26 00:04 ---
Hmm, is there any information you need? Maybe kernel config? Some logs
(although for me it seems there is nothing in)?
Shall I try to run the kernel with special debug options
Remove an include that isn't actually needed to prevent needless
rebuilds.
Signed-off-by: Jean Delvare
---
Patch already sent on:
* 2009-01-13
include/drm/drm_crtc_helper.h |1 -
1 file changed, 1 deletion(-)
--- linux-2.6.29-rc1.orig/include/drm/drm_crtc_helper.h 2009-01-11
10:57:58.000
28 matches
Mail list logo