[PATCH] drm: reduce default drm vblank off delay to 50ms

2012-11-02 Thread Mario Kleiner
On 30.10.12 20:28, Jesse Barnes wrote: > On Tue, 30 Oct 2012 20:20:44 +0100 > Daniel Vetter wrote: > >> On Tue, Oct 30, 2012 at 8:09 PM, Jesse Barnes >> wrote: >>> People keep whining about this, but no one seems to send a patch. This >>> *ought* to be safe now that we've dealt with the hw race

[Bug 56659] New: DRI_PRIME: triangle, rendering inside of which occurs with a noticeable delay

2012-11-02 Thread bugzilla-dae...@freedesktop.org
rtcs: 6 outputs: 0 associated providers: 1 name:radeon -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/c1da9e8c/attachment.html>

[Bug 56663] New: 2D tiling commit renders screen black on kdm

2012-11-02 Thread bugzilla-dae...@freedesktop.org
ou are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/f41fd7ed/attachment-0001.html>

[Bug 56663] 2D tiling commit renders screen black on kdm

2012-11-02 Thread bugzilla-dae...@freedesktop.org
xt part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/b1355c06/attachment.html>

[Bug 56663] 2D tiling commit renders screen black on kdm

2012-11-02 Thread bugzilla-dae...@freedesktop.org
. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/dcc21238/attachment.html>

[Bug 56663] 2D tiling commit renders screen black on kdm

2012-11-02 Thread bugzilla-dae...@freedesktop.org
ext part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/8bcbaed4/attachment.html>

[PATCH 46/51] drm/i915: Add support for atomic modesetting completion events

2012-11-02 Thread Ville Syrjälä
On Thu, Nov 01, 2012 at 11:39:58PM +0100, Daniel Vetter wrote: > On Thu, Nov 01, 2012 at 10:12:21AM -0700, Jesse Barnes wrote: > > On Thu, 1 Nov 2012 19:07:02 +0200 > > Ville Syrj?l? wrote: > > > > > On Thu, Nov 01, 2012 at 07:39:12AM -0700, Jesse Barnes wrote: > > > > On Thu, 1 Nov 2012 12:12:35

[Bug 56666] New: AMD SUMO GPU lockup when launching any heavy 3D application

2012-11-02 Thread bugzilla-dae...@freedesktop.org
next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/4d6eddbd/attachment.html>

[PATCH] Fix nouveau hang after switcheroo

2012-11-02 Thread Daniel J Blueman
After switcherooing to integrated and starting X, when X fails to start and causes a console switch, we get hit with a hanger (below). Fix by checking if we're already in D3. BUG: soft lockup - CPU#0 stuck for 22s! [Xorg:1703] [] nv04_timer_read+0x28/0x70 [nouveau] [] nouveau_timer_wait_eq+0x7c/

[pull] drm-intel-next for 3.8

2012-11-02 Thread Daniel Vetter
Hi Dave, Quite a pile since this is 4 weeks worth of patches: - tons of hsw dp prep patches form Paulo - round scheduled work items and timers to nearest second (Chris) - some hw workarounds (Jesse&Damien) - vlv dp support and related fixups (Vijay et al.) - basic haswell dp support, not yet wired

[Bug 36965] GL_EXT_texture_sRGB (included in OpenGL 2.1) is broken (glean/texture_srgb broken too)

2012-11-02 Thread bugzilla-dae...@freedesktop.org
wer version of mesa (9.0 or mesa from git)? -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/a6149fc7/attachment.html>

[Bug 56634] r600g: fix abysmal performance in Reaction Quake : Huge slowdown

2012-11-02 Thread bugzilla-dae...@freedesktop.org
t;http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/b38034ff/attachment.html>

[Bug 56081] (SUMO2) Black screen on X Launch, corrupted VTs when using KMS

2012-11-02 Thread bugzilla-dae...@freedesktop.org
nts/20121102/ee155aa4/attachment-0001.html>

[PATCH v2 0/4] drm/exynos,intel: fix locking for flip/vbl event list

2012-11-02 Thread Imre Deak
The patchset adds the missing event_lock when accessing the vblank_event_list in drm_vblank_off() and as preparation for this also fixes a few other issues in the exynos driver. This is also a dependency for Rob Clark's drm_send_vblank_event() rework as that would trigger a warning for the unhold

[PATCH v2 1/4] drm/exynos: hold event_lock while accessing pageflip_event_list

2012-11-02 Thread Imre Deak
Signed-off-by: Imre Deak --- drivers/gpu/drm/exynos/exynos_drm_crtc.c |5 + 1 file changed, 5 insertions(+) diff --git a/drivers/gpu/drm/exynos/exynos_drm_crtc.c b/drivers/gpu/drm/exynos/exynos_drm_crtc.c index fce245f..2efa4b0 100644 --- a/drivers/gpu/drm/exynos/exynos_drm_crtc.c +++ b

[PATCH v2 2/4] drm/exynos: call drm_vblank_put for each queued flip event

2012-11-02 Thread Imre Deak
It's guaranteed that for each event on pageflip_event_list we have called drm_vblank_get() - see exynos_drm_crtc_page_flip() - so checking for this is redundant. Also we need to call drm_vblank_put() for each event on the list, not only once, otherwise we'd leak vblank references if there are mult

[PATCH v2 3/4] drm/exynos: fix lockdep for event_lock wrt. vbl_time_lock

2012-11-02 Thread Imre Deak
Currently the exynos driver calls drm_vblank_off() with the event_lock held, while drm_vblank_off() will lock vbl_time and vblank_time_lock. This lock dependency chain conflicts with the one in drm_handle_vblank() where we first lock vblank_time_lock and then the event_lock. Fix this by removing t

[PATCH v2 4/4] drm: hold event_lock while accessing vblank_event_list

2012-11-02 Thread Imre Deak
Currently the only users of drm_vblank_off() are i915 and gma500, neither of which holds the event_lock when calling this function. Fix this by holding the event_lock while traversing the list. Signed-off-by: Imre Deak --- drivers/gpu/drm/drm_irq.c |3 +++ 1 file changed, 3 insertions(+) di

[Bug 36965] GL_EXT_texture_sRGB (included in OpenGL 2.1) is broken (glean/texture_srgb broken too)

2012-11-02 Thread bugzilla-dae...@freedesktop.org
HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/e62206e6/attachment.html>

[Bug 56405] Distorted graphics on Radeon HD 6620G

2012-11-02 Thread bugzilla-dae...@freedesktop.org
receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/fb2505d9/attachment.html>

[Bug 36965] GL_EXT_texture_sRGB (included in OpenGL 2.1) is broken (glean/texture_srgb broken too)

2012-11-02 Thread bugzilla-dae...@freedesktop.org
|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/a5fed077/attachment-0001.html>

[PATCH] kms: Return a negative error code in kms_bo_create()

2012-11-02 Thread Jakob Bornecrantz
On Thu, Nov 1, 2012 at 10:38 AM, Laurent Pinchart wrote: > The function returns returns 0 on success or a negative value in case of an > error, except when given invalid attributes in which case it returns the > positive EINVAL value. Replace that with -EINVAL to allow the caller to detect > error

[PATCH] kms: Make libkms.h usable in C++

2012-11-02 Thread Jakob Bornecrantz
On Thu, Nov 1, 2012 at 10:40 AM, Laurent Pinchart wrote: > Wrap the header in extern "C" { ... };. > > Signed-off-by: Laurent Pinchart Reviewed-by: Jakob Bornecrantz

[Bug 48455] Enabling R600_STREAMOUT causes graphical corruption

2012-11-02 Thread bugzilla-dae...@freedesktop.org
|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/4b95df69/attachment.html>

[Bug 49632] radeon: The kernel rejected CS,

2012-11-02 Thread bugzilla-dae...@freedesktop.org
|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/6cf1c4d5/attachment.html>

[Bug 56659] DRI_PRIME: triangle, rendering inside of which occurs with a noticeable delay

2012-11-02 Thread bugzilla-dae...@freedesktop.org
|| -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/9adf98c3/attachment.html>

[Bug 56659] DRI_PRIME: triangle, rendering inside of which occurs with a noticeable delay

2012-11-02 Thread bugzilla-dae...@freedesktop.org
are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/ba3a0bb8/attachment.html>

[Bug 52997] evergreen_cs_track_validate_cb:477 cb[0] bo too small when launching ds2 in wine

2012-11-02 Thread bugzilla-dae...@freedesktop.org
ed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/5ff4a00a/attachment.html>

[Bug 48759] [Piglit] : Regression failure observed for Glean test bufferObject

2012-11-02 Thread bugzilla-dae...@freedesktop.org
Boll --- Is this still an issue with a newer driver/kernel? -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/b5ab0

[Bug 44852] 3D Acceleration initialization failed for Fusion Wrestler 9808

2012-11-02 Thread bugzilla-dae...@freedesktop.org
Boll --- Is this still an issue with a newer driver/kernel? -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/daf6a

[Bug 56663] 2D tiling commit renders screen black on kdm

2012-11-02 Thread bugzilla-dae...@freedesktop.org
l/attachments/20121102/096d83f6/attachment.html>

[Bug 56081] (SUMO2) Black screen on X Launch, corrupted VTs when using KMS

2012-11-02 Thread bugzilla-dae...@freedesktop.org
attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/4739e8f2/attachment.html>

[Bug 56666] AMD SUMO GPU lockup when launching any heavy 3D application

2012-11-02 Thread bugzilla-dae...@freedesktop.org
-- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/56589360/attachment.html>

[Bug 56663] 2D tiling commit renders screen black on kdm

2012-11-02 Thread bugzilla-dae...@freedesktop.org
. anyway, I'll revert the patch and try, will report soon. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/82947431/attachment.html>

[Bug 56663] 2D tiling commit renders screen black on kdm

2012-11-02 Thread bugzilla-dae...@freedesktop.org
ssignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/ddb9082e/attachment.html>

[Bug 25590] commit "drm: disable all the possible outputs/crtcs before entering KMS mode" introduces EDID errors

2012-11-02 Thread bugzilla-dae...@freedesktop.org
are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/570ac1e7/attachment-0001.html>

[Bug 56663] 2D tiling commit renders screen black on kdm

2012-11-02 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20121102/a4870767/attachment.html>

[Bug 40931] r600g: interpret integer texture types as ints regresses VDPAU/XVMC decode.

2012-11-02 Thread bugzilla-dae...@freedesktop.org
org/archives/dri-devel/attachments/20121102/8eea9bf3/attachment.html>

[Bug 34313] RV770 lock-up with OpenGL

2012-11-02 Thread bugzilla-dae...@freedesktop.org
: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/0606e6c9/attachment.html>

[Bug 34313] RV770 lock-up with OpenGL

2012-11-02 Thread bugzilla-dae...@freedesktop.org
ext part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/a35e4465/attachment.html>

[Bug 28223] Screen Blanks on launching racing game Vdrift

2012-11-02 Thread bugzilla-dae...@freedesktop.org
because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/2f109fbf/attachment.html>

[Bug 52997] evergreen_cs_track_validate_cb:477 cb[0] bo too small when launching ds2 in wine

2012-11-02 Thread bugzilla-dae...@freedesktop.org
t the crucial part of plumbing there would be no output at all. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/e7317633/attachment.html>

[Bug 24542] r600 vertex processing broken in mesa 7.7

2012-11-02 Thread bugzilla-dae...@freedesktop.org
ogram extension instead. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/6f73b55c/attachment-0001.html>

[Bug 32323] GL_EXT_texture_sRGB is broken

2012-11-02 Thread bugzilla-dae...@freedesktop.org
part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/8dd2a5d8/attachment.html>

[Bug 25443] [nexuiz] Endless loading without kms

2012-11-02 Thread bugzilla-dae...@freedesktop.org
ttp://lists.freedesktop.org/archives/dri-devel/attachments/20121102/767bbc3b/attachment.html>

[Bug 23436] RV620 locks up on starting/quiting 3D app

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/4c0e62f9/attachment.html>

[Bug 36172] xf86-video-ati-git causes Gnome 3 crash (Radeon HD5770 - r800)

2012-11-02 Thread bugzilla-dae...@freedesktop.org
assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/d967e1bb/attachment.html>

[Bug 23949] [RV620] r600 crash on resolution change & OpenGL start

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/d400f38f/attachment.html>

[Bug 24857] Lightening and object selection in viewport is not working in Blender 3D

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/7f321d2a/attachment.html>

[Bug 24860] Triple Buffer is very slow in Blender 3D

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/ce93dba2/attachment-0001.html>

[Bug 27457] Blender artifacts when using box select

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/12b953ae/attachment.html>

[Bug 37490] texture corruption in r600/r600g when using DRI2, no texture corruption in r600 with dri1

2012-11-02 Thread bugzilla-dae...@freedesktop.org
because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/a0da8bb7/attachment.html>

[Bug 52574] crash in memcpy_texture because of NULL dstAddr (gl_texture_image.Data)

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/3ca3199d/attachment.html>

[Bug 28932] KWin crash (KDE 4.4.90) during call to r600 driver

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/9d2f5ef8/attachment.html>

[Bug 27443] radeonFreeTexImageData: Assertion `!image->base.Data' failed when running Ogre3D samples

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/ba020169/attachment.html>

[Bug 26997] r600: broken mipmap generation

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/b93a7ff7/attachment.html>

[Bug 26525] Rendering bug due to ARB_texture_non_power_of_two

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/66b72f1a/attachment-0001.html>

[Bug 26011] Rare font corruption in OpenArena

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/73e452ab/attachment.html>

[Bug 26114] Black screen on The Sims 3 beginning

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/718f6168/attachment.html>

[Bug 24380] OpenGL fullscreen with KMS multihead

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/27e41b0b/attachment.html>

[Bug 29317] Neverwinter night cloak texture is broken on r600

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/1c2ccaea/attachment.html>

[Bug 29318] Marbleblast textures broken on r600

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/6b40cc35/attachment.html>

[Bug 29200] [wine] Warcraft 3 crashes after trying to launch again

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/fb19f979/attachment.html>

[Bug 26735] r600: rendering artifacts

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/7d214420/attachment-0001.html>

[Bug 27723] Vtx endian setup error under big endain CPU

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/62cf17c0/attachment.html>

[Bug 28359] Regression running Second Life viewer on r600 (mipmap generation issue?)

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/bda670d1/attachment.html>

[Bug 28412] Thief 2 crashes in wine with the open source driver and not with fglrx

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/5ad1d45c/attachment.html>

[Bug 32246] [RADEON:KMS:R600C] compiz 0.9 switcher segfaults in mipmap generation code

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/a6302eaf/attachment.html>

[Bug 40936] register address overlap make line stipple error

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/c1c48fd6/attachment.html>

[Bug 26769] r600: wrong fragment shader input when using gl_fragCoord.

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/3adbb04e/attachment.html>

[Bug 27173] r600 wierdness with shaders for blur effect in compiz

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/b9ccea44/attachment-0001.html>

[Bug 27434] [rv710] low 3d perfomance in general

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/2a8d990d/attachment.html>

[Bug 27061] r600: software fallback for GL_DEPTH_COMPONENT*

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/8db09ceb/attachment.html>

[Bug 34377] Radeon driver PCIe throughput not up to PCIe2.0 levels

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/f58ddcf4/attachment.html>

[Bug 27025] Very slow start of The Sims 3

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/6b489712/attachment.html>

[Bug 26115] blit: lack of depth copies

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/9ea1d7f8/attachment.html>

[Bug 26933] r600 driver (rv730): piglit test failures

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/fc4eb9e3/attachment.html>

[Bug 27132] piglit comparison between F12 7.7-4 and 7.9-git

2012-11-02 Thread bugzilla-dae...@freedesktop.org
... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/62f644e1/attachment-0001.html>

[Bug 52997] evergreen_cs_track_validate_cb:477 cb[0] bo too small when launching ds2 in wine

2012-11-02 Thread bugzilla-dae...@freedesktop.org
chment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/3ff25d5d/attachment.html>

[Bug 28359] Regression running Second Life viewer on r600 (mipmap generation issue?)

2012-11-02 Thread bugzilla-dae...@freedesktop.org
arder to work around). Guess this probably wants closing? -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/c20624ff/attachment.html>

[PATCH v7 2/8] of: add helper to parse display timings

2012-11-02 Thread Leela Krishna Amudala
Hello Steffen, On Wed, Oct 31, 2012 at 2:58 PM, Steffen Trumtrar wrote: > Signed-off-by: Steffen Trumtrar > --- > .../devicetree/bindings/video/display-timings.txt | 139 +++ > drivers/of/Kconfig |6 + > drivers/of/Makefile

[Bug 28359] Regression running Second Life viewer on r600 (mipmap generation issue?)

2012-11-02 Thread bugzilla-dae...@freedesktop.org
|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/54a00250/attachment.html>

[Bug 56663] 2D tiling commit renders screen black on kdm

2012-11-02 Thread bugzilla-dae...@freedesktop.org
sue confirmed, it was indeed that Zaphod patch. -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/adeeda01/attachment.html>

[PATCH] drm: reduce default drm vblank off delay to 50ms

2012-11-02 Thread Jesse Barnes
On Fri, 02 Nov 2012 06:56:57 +0100 Mario Kleiner wrote: > Jesse, thanks for cc'ing me, much appreciated :) > > Psychtoolbox should be fine with a 50 msecs vblank off delay. I think i > tested with values somewhere between 50 - 100 msecs at the time the drm > patches were made. The way i schedul

[Bug 27443] radeonFreeTexImageData: Assertion `!image->base.Data' failed when running Ogre3D samples

2012-11-02 Thread bugzilla-dae...@freedesktop.org
t;http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/d97a9b87/attachment.html>

[Bug 56663] 2D tiling commit renders screen black on kdm

2012-11-02 Thread bugzilla-dae...@freedesktop.org
: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/e788937f/attachment.html>

[Bug 27457] Blender artifacts when using box select

2012-11-02 Thread bugzilla-dae...@freedesktop.org
rg/archives/dri-devel/attachments/20121102/ac16a5fe/attachment.html>

[Bug 27457] Blender artifacts when using box select

2012-11-02 Thread bugzilla-dae...@freedesktop.org
|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/ffd5b51a/attachment.html>

[Bug 24857] Lightening and object selection in viewport is not working in Blender 3D

2012-11-02 Thread bugzilla-dae...@freedesktop.org
efore on occasion without this issue). Lighting is looking correct as well -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/

[Bug 24857] Lightening and object selection in viewport is not working in Blender 3D

2012-11-02 Thread bugzilla-dae...@freedesktop.org
|--- |FIXED -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/c7b6727e/attachment.html>

[Intel-gfx] [PATCH 0/3] drm/i915: eDP scaling mode change support

2012-11-02 Thread Yuly Novikov
_ > > Intel-gfx mailing list > > Intel-gfx at lists.freedesktop.org > > http://lists.freedesktop.org/mailman/listinfo/intel-gfx > > > > -- > Paulo Zanoni > -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20121102/6ad3bbeb/attachment-0001.html>

[REGRESSION] i915: failure to interoperate with HP ZR30w using an X230

2012-11-02 Thread Theodore Ts'o
Ping? On Tue, Oct 30, 2012 at 04:32:21PM -0400, Theodore Ts'o wrote: > On Tue, Oct 30, 2012 at 01:57:27PM +0200, Jani Nikula wrote: > > > [1] drm-intel-next-queued branch at > > > git://people.freedesktop.org/~danvet/drm-intel > > > > Hmm, actually not. Either drm-intel-fixes branch, or Linus' m

<    1   2