All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bug 99843] Geometry Shader - Incorrect Output
@ 2017-02-16 20:24 bugzilla-daemon
  2017-02-16 21:13 ` bugzilla-daemon
                   ` (16 more replies)
  0 siblings, 17 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-02-16 20:24 UTC (permalink / raw)
  To: dri-devel


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

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

            Bug ID: 99843
           Summary: Geometry Shader - Incorrect Output
           Product: Mesa
           Version: unspecified
          Hardware: x86-64 (AMD64)
                OS: Linux (All)
            Status: NEW
          Severity: normal
          Priority: medium
         Component: Drivers/Gallium/radeonsi
          Assignee: dri-devel@lists.freedesktop.org
          Reporter: dan@jerber.co.uk
        QA Contact: dri-devel@lists.freedesktop.org

Created attachment 129684
  --> https://bugs.freedesktop.org/attachment.cgi?id=129684&action=edit
Typical output

Hi,

I am developing a cross-platform application. I have recently found an issue
that is only present when it is tested on a Ubuntu machine. I have managed to
find a minimal example that shows the issue as follows:

The vertex shader:

#version 150
in vec2 pos;

void main(void)
{
    gl_Position = vec4(pos, 0.0, 1.0);
}


The fragment shader:

#version 150
out vec4 outColour;

void main(void)
{
    outColour = vec4(1.0f, 1.0f, 1.0f, 1.0f);
}


The geometry shader:

#version 150
layout(points) in;
layout(line_strip, max_vertices = 13) out;
uniform mat4 vpMatrix;

void main()
{
    for(int i = 0; i < 13; i++)
    {
        float polygonAngle = (i * 30) + 90.0f;
        vec4 vertexPosition = vec4((sin(radians(polygonAngle)) * 0.5f) +
gl_in[0].gl_Position.x, (cos(radians(polygonAngle)) * 0.5f) +
gl_in[0].gl_Position.y, 0.0f, 1.0f);
        gl_Position = vpMatrix * vertexPosition;
        EmitVertex();
    }
    EndPrimitive();
}

The problem occurs when the shader program is used with multiple VBO's. For
example:

3 separate VBO's are created with {-1.0f, 1.0f}, {1.0f, 1.0f}, {1.0f, -1.0f} as
the data. Then, for each repaint:

for(int i = 0; i < 3; i++)
{
    Bind array buffer i.
    glDrawArrays(GL_POINTS, 0, 1);
}

This produces strange results for the third polygon (shown in the attached
image Output.JPG).

If tested on a Windows 10 machine (exactly the same hardware) or an OSX
machine, the results are as expected (3 regular polygons with 12 sides).

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
@ 2017-02-16 21:13 ` bugzilla-daemon
  2017-02-16 22:13 ` bugzilla-daemon
                   ` (15 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-02-16 21:13 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #1 from Nicolai Hähnle <nhaehnle@gmail.com> ---
Interesting, thanks for the report.

Is this really an issue of having separate VBOs, or does the issue also occur
when you use separate draw calls with a single VBO? Or a single draw call?

Do you have a simple program that reproduces this? Alternatively, an apitrace
is likely to help.

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
  2017-02-16 21:13 ` bugzilla-daemon
@ 2017-02-16 22:13 ` bugzilla-daemon
  2017-02-16 22:16 ` bugzilla-daemon
                   ` (14 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-02-16 22:13 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #2 from dan@jerber.co.uk ---
I've just tried with multiple draw calls using the same VBO and it appears this
does also cause the error. However, it appears there has to be 3 or more calls
to cause the error (1 and 2 calls produce the expected output).

Apologies for that. It was the way my application works that led me down that
path.

I currently do not have a simple program that demonstrates the error. I have
amended the application I've been writing to call the test shaders as I was
trying to work out what was wrong with my application. I could probably create
something. What is the usual format to provide this in?

Thanks.

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
  2017-02-16 21:13 ` bugzilla-daemon
  2017-02-16 22:13 ` bugzilla-daemon
@ 2017-02-16 22:16 ` bugzilla-daemon
  2017-02-17 17:00 ` bugzilla-daemon
                   ` (13 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-02-16 22:16 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #3 from Ilia Mirkin <imirkin@alum.mit.edu> ---
https://github.com/apitrace/apitrace

This can be used to record (and replay) all the GL commands sent down to the
driver.

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (2 preceding siblings ...)
  2017-02-16 22:16 ` bugzilla-daemon
@ 2017-02-17 17:00 ` bugzilla-daemon
  2017-02-17 17:01 ` bugzilla-daemon
                   ` (12 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-02-17 17:00 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #4 from dan@jerber.co.uk ---
I created a minimal test program that simply draws the 3 polygons (12 sided). I
have used apitrace with this test program to generate a trace and I'll upload
this shortly. Thanks.

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (3 preceding siblings ...)
  2017-02-17 17:00 ` bugzilla-daemon
@ 2017-02-17 17:01 ` bugzilla-daemon
  2017-02-17 23:53 ` bugzilla-daemon
                   ` (11 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-02-17 17:01 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #5 from dan@jerber.co.uk ---
Created attachment 129697
  --> https://bugs.freedesktop.org/attachment.cgi?id=129697&action=edit
Trace

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (4 preceding siblings ...)
  2017-02-17 17:01 ` bugzilla-daemon
@ 2017-02-17 23:53 ` bugzilla-daemon
  2017-02-17 23:55 ` bugzilla-daemon
                   ` (10 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-02-17 23:53 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #6 from Tom St Denis <tom.stdenis@amd.com> ---
What hardware is this on?  I wonder if it's a dup of 99850 (which was found on
a Carrizo).

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (5 preceding siblings ...)
  2017-02-17 23:53 ` bugzilla-daemon
@ 2017-02-17 23:55 ` bugzilla-daemon
  2017-02-18  6:42 ` bugzilla-daemon
                   ` (9 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-02-17 23:55 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #7 from Ilia Mirkin <imirkin@alum.mit.edu> ---
FWIW it appears to render correctly on both nouveau (GK208) as well as i965
(SKL).

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (6 preceding siblings ...)
  2017-02-17 23:55 ` bugzilla-daemon
@ 2017-02-18  6:42 ` bugzilla-daemon
  2017-02-18 11:38 ` bugzilla-daemon
                   ` (8 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-02-18  6:42 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #8 from dan@jerber.co.uk ---
The hardware is Radeon HD 4890.

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (7 preceding siblings ...)
  2017-02-18  6:42 ` bugzilla-daemon
@ 2017-02-18 11:38 ` bugzilla-daemon
  2017-02-19 17:46 ` bugzilla-daemon
                   ` (7 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-02-18 11:38 UTC (permalink / raw)
  To: dri-devel


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

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

smoki <smoki00790@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
          Component|Drivers/Gallium/radeonsi    |Drivers/Gallium/r600

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (8 preceding siblings ...)
  2017-02-18 11:38 ` bugzilla-daemon
@ 2017-02-19 17:46 ` bugzilla-daemon
  2017-06-22 17:07 ` bugzilla-daemon
                   ` (6 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-02-19 17:46 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #9 from Grazvydas Ignotas <notasas@gmail.com> ---
Also good on radeonsi (POLARIS10) and i965 (HSW).

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (9 preceding siblings ...)
  2017-02-19 17:46 ` bugzilla-daemon
@ 2017-06-22 17:07 ` bugzilla-daemon
  2017-11-01 15:24 ` bugzilla-daemon
                   ` (5 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-06-22 17:07 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #10 from Gert Wollny <gw.fossdev@gmail.com> ---
Looks good on Barts (6870)  (mesa-git 903e1047) that actually uses r600g.

When replaying the trace I see an api issue message though: 

1430: message: api issue 1: FBO incomplete: no attachments and default width or
height is 0 [-1]

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (10 preceding siblings ...)
  2017-06-22 17:07 ` bugzilla-daemon
@ 2017-11-01 15:24 ` bugzilla-daemon
  2017-11-01 15:30 ` bugzilla-daemon
                   ` (4 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-11-01 15:24 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #11 from dan@jerber.co.uk ---
Hi,

Is it likely this will be looked into or are there no plans to look into issues
for older cards?

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (11 preceding siblings ...)
  2017-11-01 15:24 ` bugzilla-daemon
@ 2017-11-01 15:30 ` bugzilla-daemon
  2017-11-06  7:56 ` bugzilla-daemon
                   ` (3 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-11-01 15:30 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #12 from Ilia Mirkin <imirkin@alum.mit.edu> ---
No one has been able to reproduce, tried on various hardware including a Radeon
6870 (BARTS).

Without more information, it's unlikely that anything will happen. At the very
least (a) recheck on mesa master and if it's still broken, (b) supply
information about your GPU.

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (12 preceding siblings ...)
  2017-11-01 15:30 ` bugzilla-daemon
@ 2017-11-06  7:56 ` bugzilla-daemon
  2017-11-06 10:10 ` bugzilla-daemon
                   ` (2 subsequent siblings)
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-11-06  7:56 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #13 from dan@jerber.co.uk ---
Hi,

It is still a problem. I detailed the card in comment 8 (HD 4890). Could you
advise what other information you would need about the GPU?

Thanks.

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (13 preceding siblings ...)
  2017-11-06  7:56 ` bugzilla-daemon
@ 2017-11-06 10:10 ` bugzilla-daemon
  2017-11-06 20:09 ` bugzilla-daemon
  2019-09-18 19:22 ` bugzilla-daemon
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-11-06 10:10 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #14 from dan@jerber.co.uk ---
The 4890 has a RV790 GPU.

I've run the trace again and also see an error similar to the one Gert
mentioned:

1639 Message api issue 1: FBO incomplete: no attachments and default width or
height is 0 [-1].

There are also more errors reported around glDrawArrays as follows:

major api error 2: GL_INVALID_ENUM in
glGetIntegerV(pname=GL_TEXTURE_BINDING_CUBE_MAP_ARRAY)

warning: dumping of normalized attribute (vertexCoord) not yet supported

warning: dumping of normalized attribute (textureCoord) not yet supported

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (14 preceding siblings ...)
  2017-11-06 10:10 ` bugzilla-daemon
@ 2017-11-06 20:09 ` bugzilla-daemon
  2019-09-18 19:22 ` bugzilla-daemon
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2017-11-06 20:09 UTC (permalink / raw)
  To: dri-devel


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

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

--- Comment #15 from dan@jerber.co.uk ---
I was reading about the R600 driver and came across a TODO page that suggested
testing using piglit.

I downloaded and compiled this. I ran the "shader.py" test and it gave the
following results:

skip: 26496  Pass: 6567  Warn: 2  Fail:496  Crash: 5

I'm not sure if piglit is a good measure on this but the number of fails seems
very high.

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

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

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

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

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

* [Bug 99843] Geometry Shader - Incorrect Output
  2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
                   ` (15 preceding siblings ...)
  2017-11-06 20:09 ` bugzilla-daemon
@ 2019-09-18 19:22 ` bugzilla-daemon
  16 siblings, 0 replies; 18+ messages in thread
From: bugzilla-daemon @ 2019-09-18 19:22 UTC (permalink / raw)
  To: dri-devel


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

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

GitLab Migration User <gitlab-migration@fdo.invalid> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |MOVED

--- Comment #16 from GitLab Migration User <gitlab-migration@fdo.invalid> ---
-- GitLab Migration Automatic Message --

This bug has been migrated to freedesktop.org's GitLab instance and has been
closed from further activity.

You can subscribe and participate further through the new bug through this link
to our GitLab instance: https://gitlab.freedesktop.org/mesa/mesa/issues/597.

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

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

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

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

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

end of thread, other threads:[~2019-09-18 19:22 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-16 20:24 [Bug 99843] Geometry Shader - Incorrect Output bugzilla-daemon
2017-02-16 21:13 ` bugzilla-daemon
2017-02-16 22:13 ` bugzilla-daemon
2017-02-16 22:16 ` bugzilla-daemon
2017-02-17 17:00 ` bugzilla-daemon
2017-02-17 17:01 ` bugzilla-daemon
2017-02-17 23:53 ` bugzilla-daemon
2017-02-17 23:55 ` bugzilla-daemon
2017-02-18  6:42 ` bugzilla-daemon
2017-02-18 11:38 ` bugzilla-daemon
2017-02-19 17:46 ` bugzilla-daemon
2017-06-22 17:07 ` bugzilla-daemon
2017-11-01 15:24 ` bugzilla-daemon
2017-11-01 15:30 ` bugzilla-daemon
2017-11-06  7:56 ` bugzilla-daemon
2017-11-06 10:10 ` bugzilla-daemon
2017-11-06 20:09 ` bugzilla-daemon
2019-09-18 19:22 ` bugzilla-daemon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.