dri-devel Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Bug 58925] New: compis/kwin crashes on nouveau due to msaa
@ 2013-01-01 21:25 bugzilla-daemon
  2013-01-01 21:28 ` [Bug 58925] " bugzilla-daemon
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: bugzilla-daemon @ 2013-01-01 21:25 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 1104 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=58925

          Priority: medium
            Bug ID: 58925
          Assignee: dri-devel@lists.freedesktop.org
           Summary: compis/kwin crashes on nouveau due to msaa
          Severity: normal
    Classification: Unclassified
                OS: All
          Reporter: bobahu4@gmail.com
          Hardware: Other
            Status: NEW
           Version: XOrg CVS
         Component: General
           Product: DRI

Here compiz/kwin crashes when tries to run with weird assertion on msaa
textures. 
Found that msaa can be swithced off with enviroment variable 

http://cgit.freedesktop.org/mesa/mesa/commit/?id=1d0bf69f831e138a05a282e59746f20141046fd6

but GALLIUM_MSAA = 0 doesnt help at all.

so I edited dri_fill_st_visual in dri_screen.c to disable msaa at all 

   if (mode->sampleBuffers) {
-      stvis->samples = mode->samples;
+      stvis->samples = 1;
   }

Now compiz/kwin work fine.

kernel 3.8-git from ubuntu daily kernel-ppa, ubuntu 12.10, nvidia gtx670

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 2518 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug 58925] compis/kwin crashes on nouveau due to msaa
  2013-01-01 21:25 [Bug 58925] New: compis/kwin crashes on nouveau due to msaa bugzilla-daemon
@ 2013-01-01 21:28 ` bugzilla-daemon
  2013-01-01 21:35 ` bugzilla-daemon
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: bugzilla-daemon @ 2013-01-01 21:28 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 349 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=58925

--- Comment #1 from Vladimir <bobahu4@gmail.com> ---
Forgot the assertion

nvc0_miptree_init_ms_mode:177 - invalid nr_samples: 32
dri2.c:256:dri2_drawable_process_buffers: Assertion
`drawable->msaa_textures[att]' failed.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1105 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug 58925] compis/kwin crashes on nouveau due to msaa
  2013-01-01 21:25 [Bug 58925] New: compis/kwin crashes on nouveau due to msaa bugzilla-daemon
  2013-01-01 21:28 ` [Bug 58925] " bugzilla-daemon
@ 2013-01-01 21:35 ` bugzilla-daemon
  2013-01-02 21:12 ` bugzilla-daemon
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 6+ messages in thread
From: bugzilla-daemon @ 2013-01-01 21:35 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 479 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=58925

Vladimir <bobahu4@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Hardware|Other                       |x86-64 (AMD64)
                 OS|All                         |Linux (All)
          Component|General                     |libGL

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1350 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug 58925] compis/kwin crashes on nouveau due to msaa
  2013-01-01 21:25 [Bug 58925] New: compis/kwin crashes on nouveau due to msaa bugzilla-daemon
  2013-01-01 21:28 ` [Bug 58925] " bugzilla-daemon
  2013-01-01 21:35 ` bugzilla-daemon
@ 2013-01-02 21:12 ` bugzilla-daemon
  2013-08-19 17:18 ` bugzilla-daemon
  2013-08-19 17:57 ` bugzilla-daemon
  4 siblings, 0 replies; 6+ messages in thread
From: bugzilla-daemon @ 2013-01-02 21:12 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 306 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=58925

--- Comment #2 from Christoph Bumiller <e0425955@student.tuwien.ac.at> ---
What's weird is, why does it try to create a texture with 32 samples ? 32x MSAA
is not very common ...

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1081 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug 58925] compis/kwin crashes on nouveau due to msaa
  2013-01-01 21:25 [Bug 58925] New: compis/kwin crashes on nouveau due to msaa bugzilla-daemon
                   ` (2 preceding siblings ...)
  2013-01-02 21:12 ` bugzilla-daemon
@ 2013-08-19 17:18 ` bugzilla-daemon
  2013-08-19 17:57 ` bugzilla-daemon
  4 siblings, 0 replies; 6+ messages in thread
From: bugzilla-daemon @ 2013-08-19 17:18 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 563 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=58925

--- Comment #3 from Pali Rohár <pali.rohar@gmail.com> ---
This problem is maybe related:
http://lists.freedesktop.org/archives/mesa-dev/2013-August/043505.html

Kwin from KDE4.8 not rendering properly after commit
35840ab189595b817fa8b1a1df8cc92474a7c38d:
st/dri: implement MSAA for GLX/DRI2 framebuffers
Author: Marek Olšák  2012-12-03 05:36:08
Committer: Marek Olšák  2012-12-07 14:19:29
Reviewed-by: Brian Paul

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1427 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

* [Bug 58925] compis/kwin crashes on nouveau due to msaa
  2013-01-01 21:25 [Bug 58925] New: compis/kwin crashes on nouveau due to msaa bugzilla-daemon
                   ` (3 preceding siblings ...)
  2013-08-19 17:18 ` bugzilla-daemon
@ 2013-08-19 17:57 ` bugzilla-daemon
  4 siblings, 0 replies; 6+ messages in thread
From: bugzilla-daemon @ 2013-08-19 17:57 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 739 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=58925

Fabio Pedretti <fabio.ped@libero.it> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Assignee|dri-devel@lists.freedesktop |mesa-dev@lists.freedesktop.
                   |.org                        |org
                 CC|                            |fabio.ped@libero.it,
                   |                            |maraeo@gmail.com
            Product|DRI                         |Mesa
            Version|XOrg CVS                    |git
          Component|libGL                       |Mesa core

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1789 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2013-08-19 17:57 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-01 21:25 [Bug 58925] New: compis/kwin crashes on nouveau due to msaa bugzilla-daemon
2013-01-01 21:28 ` [Bug 58925] " bugzilla-daemon
2013-01-01 21:35 ` bugzilla-daemon
2013-01-02 21:12 ` bugzilla-daemon
2013-08-19 17:18 ` bugzilla-daemon
2013-08-19 17:57 ` bugzilla-daemon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox