From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon@freedesktop.org Subject: [Bug 82586] New: UBO matrix in std140 struct does not work Date: Wed, 13 Aug 2014 21:54:47 +0000 Message-ID: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0057322815==" Return-path: Received: from culpepper.freedesktop.org (unknown [131.252.210.165]) by gabe.freedesktop.org (Postfix) with ESMTP id B1BE06E2B8 for ; Wed, 13 Aug 2014 14:54:47 -0700 (PDT) List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org --===============0057322815== Content-Type: multipart/alternative; boundary="1407966887.4fcaa0f0.1792"; charset="us-ascii" --1407966887.4fcaa0f0.1792 Date: Wed, 13 Aug 2014 21:54:47 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" https://bugs.freedesktop.org/show_bug.cgi?id=82586 Priority: medium Bug ID: 82586 Assignee: dri-devel@lists.freedesktop.org Summary: UBO matrix in std140 struct does not work Severity: normal Classification: Unclassified OS: All Reporter: pavol@klacansky.com Hardware: Other Status: NEW Version: git Component: Drivers/Gallium/r600 Product: Mesa I am not sure if the problem is actually in my code, but I tested it on nVidia driver and it worked (but their compiler might have a fix for it internally). Here is vertex shader: #version 330 layout(location = 0) in vec4 position; layout(std140) uniform Matrices { mat4 model; mat4 view; mat4 projection; } matrices; out gl_PerVertex { vec4 gl_Position; }; /* interpolate to compute normal in fragment shader */ out vec3 v_position; void main(void) { v_position = vec3(matrices.view * matrices.model * position); gl_Position = matrices.projection * matrices.view * matrices.model * position; } If I use only one matrix from the uniform it works. I have printed UBOs values and they are just identity matrices. -- You are receiving this mail because: You are the assignee for the bug. --1407966887.4fcaa0f0.1792 Date: Wed, 13 Aug 2014 21:54:47 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8"
Priority medium
Bug ID 82586
Assignee dri-devel@lists.freedesktop.org
Summary UBO matrix in std140 struct does not work
Severity normal
Classification Unclassified
OS All
Reporter pavol@klacansky.com
Hardware Other
Status NEW
Version git
Component Drivers/Gallium/r600
Product Mesa

I am not sure if the problem is actually in my code, but I tested it on nVidia
driver and it worked (but their compiler might have a fix for it internally).

Here is vertex shader:

#version 330

layout(location = 0) in vec4 position;

layout(std140) uniform Matrices {
    mat4 model;
    mat4 view;
    mat4 projection;
} matrices;

out gl_PerVertex {
    vec4 gl_Position;
};

/* interpolate to compute normal in fragment shader */
out vec3 v_position;

void main(void)
{
    v_position = vec3(matrices.view * matrices.model * position);
    gl_Position = matrices.projection * matrices.view * matrices.model *
position;
}


If I use only one matrix from the uniform it works. I have printed UBOs values
and they are just identity matrices.


You are receiving this mail because:
  • You are the assignee for the bug.
--1407966887.4fcaa0f0.1792-- --===============0057322815== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel --===============0057322815==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon@freedesktop.org Subject: [Bug 82586] UBO matrix in std140 struct does not work Date: Thu, 14 Aug 2014 01:13:45 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1890775680==" Return-path: Received: from culpepper.freedesktop.org (unknown [131.252.210.165]) by gabe.freedesktop.org (Postfix) with ESMTP id 975A86E60E for ; Wed, 13 Aug 2014 18:13:45 -0700 (PDT) In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org --===============1890775680== Content-Type: multipart/alternative; boundary="1407978825.70dbef1.21125"; charset="us-ascii" --1407978825.70dbef1.21125 Date: Thu, 14 Aug 2014 01:13:45 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" https://bugs.freedesktop.org/show_bug.cgi?id=82586 Ian Romanick changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO --- Comment #1 from Ian Romanick --- What is the failure mode? A bunch of changes recently occurred in the GLSL compiler (especially in the linker) for UBO matrices. What version of Mesa are you on? Can you try a build of master? -- You are receiving this mail because: You are the assignee for the bug. --1407978825.70dbef1.21125 Date: Thu, 14 Aug 2014 01:13:45 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8" changed bug 82586
What Removed Added
Status NEW NEEDINFO

Comment # 1 on bug 82586 from
What is the failure mode?  A bunch of changes recently occurred in the GLSL
compiler (especially in the linker) for UBO matrices.  What version of Mesa are
you on?  Can you try a build of master?


You are receiving this mail because:
  • You are the assignee for the bug.
--1407978825.70dbef1.21125-- --===============1890775680== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel --===============1890775680==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon@freedesktop.org Subject: [Bug 82586] UBO matrix in std140 struct does not work Date: Thu, 14 Aug 2014 13:12:57 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0997118212==" Return-path: Received: from culpepper.freedesktop.org (unknown [131.252.210.165]) by gabe.freedesktop.org (Postfix) with ESMTP id 2A9CF6E6AF for ; Thu, 14 Aug 2014 06:12:57 -0700 (PDT) In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org --===============0997118212== Content-Type: multipart/alternative; boundary="1408021977.e1AD02.30304"; charset="us-ascii" --1408021977.e1AD02.30304 Date: Thu, 14 Aug 2014 13:12:57 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" https://bugs.freedesktop.org/show_bug.cgi?id=82586 --- Comment #2 from pavol@klacansky.com --- "What is the failure mode?" Don't follow "What version of Mesa are you on?" https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers Seem couple days old. "Can you try a build of master?" Can't I just wait for new build in PPA? -- You are receiving this mail because: You are the assignee for the bug. --1408021977.e1AD02.30304 Date: Thu, 14 Aug 2014 13:12:57 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8"

Comment # 2 on bug 82586 from
"What is the failure mode?"
Don't follow

"What version of Mesa are you on?"
https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers
Seem couple days old.

"Can you try a build of master?"
Can't I just wait for new build in PPA?


You are receiving this mail because:
  • You are the assignee for the bug.
--1408021977.e1AD02.30304-- --===============0997118212== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel --===============0997118212==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon@freedesktop.org Subject: [Bug 82586] UBO matrix in std140 struct does not work Date: Thu, 14 Aug 2014 16:46:14 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1975911287==" Return-path: Received: from culpepper.freedesktop.org (unknown [131.252.210.165]) by gabe.freedesktop.org (Postfix) with ESMTP id 0E84F6E6F9 for ; Thu, 14 Aug 2014 09:46:15 -0700 (PDT) In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org --===============1975911287== Content-Type: multipart/alternative; boundary="1408034774.3a2a62F43.32544"; charset="us-ascii" --1408034774.3a2a62F43.32544 Date: Thu, 14 Aug 2014 16:46:14 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" https://bugs.freedesktop.org/show_bug.cgi?id=82586 --- Comment #3 from Ian Romanick --- (In reply to comment #2) > "What is the failure mode?" > Don't follow You say it doesn't work. That's pretty vague. If it fails in some way, what is the mode of the failure? (See also http://en.wikipedia.org/wiki/Failure_causes#Component_failure) Are the member locations incorrect (query through the API)? Is the row-major / column-major orientation of the matrices incorrect (query through the API)? Is the generated code reading the wrong locations? Does it crash in the driver? Does your computer catch on fire? Without any information about how it actually fails, it's pretty much impossible to fix. > "What version of Mesa are you on?" > https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers > Seem couple days old. When I check it now, it should have everything. The other question: does this work on older Mesa? Say... a 10.2 stable release? > "Can you try a build of master?" > Can't I just wait for new build in PPA? You can... at some point there will probably be a patch for you to test, and that won't be in PPA. You can probably wait to worry about it until such a patch exists. -- You are receiving this mail because: You are the assignee for the bug. --1408034774.3a2a62F43.32544 Date: Thu, 14 Aug 2014 16:46:14 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8"

Comment # 3 on bug 82586 from
(In reply to comment #2)
> "What is the failure mode?"
> Don't follow

You say it doesn't work.  That's pretty vague.  If it fails in some way, what
is the mode of the failure?  (See also
http://en.wikipedia.org/wiki/Failure_causes#Component_failure)

Are the member locations incorrect (query through the API)?  Is the row-major /
column-major orientation of the matrices incorrect (query through the API)?  Is
the generated code reading the wrong locations?  Does it crash in the driver? 
Does your computer catch on fire?

Without any information about how it actually fails, it's pretty much
impossible to fix.

> "What version of Mesa are you on?"
> https://launchpad.net/~oibaf/+archive/ubuntu/graphics-drivers
> Seem couple days old.

When I check it now, it should have everything.  The other question: does this
work on older Mesa?  Say... a 10.2 stable release?

> "Can you try a build of master?"
> Can't I just wait for new build in PPA?

You can... at some point there will probably be a patch for you to test, and
that won't be in PPA.  You can probably wait to worry about it until such a
patch exists.


You are receiving this mail because:
  • You are the assignee for the bug.
--1408034774.3a2a62F43.32544-- --===============1975911287== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel --===============1975911287==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon@freedesktop.org Subject: [Bug 82586] UBO matrix in std140 struct does not work Date: Thu, 14 Aug 2014 20:35:41 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0076303504==" Return-path: Received: from culpepper.freedesktop.org (unknown [131.252.210.165]) by gabe.freedesktop.org (Postfix) with ESMTP id B0AF66E74F for ; Thu, 14 Aug 2014 13:35:41 -0700 (PDT) In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org --===============0076303504== Content-Type: multipart/alternative; boundary="1408048541.aDCf12aa2.4794"; charset="us-ascii" --1408048541.aDCf12aa2.4794 Date: Thu, 14 Aug 2014 20:35:41 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" https://bugs.freedesktop.org/show_bug.cgi?id=82586 --- Comment #4 from pavol@klacansky.com --- (In reply to comment #3) > You say it doesn't work. That's pretty vague. If it fails in some way, > what is the mode of the failure? (See also > http://en.wikipedia.org/wiki/Failure_causes#Component_failure) It just does not display anything, hence either whole pipeline crashes (and OpenGL KHR_debug does not print it out) or the transform moves vertices outside clipping region (I might try transform feedback over weekend). > Are the member locations incorrect (query through the API)? Is the > row-major / column-major orientation of the matrices incorrect (query > through the API)? Is the generated code reading the wrong locations? Does > it crash in the driver? Does your computer catch on fire? Locations are correct (at least if gl query returns them properly). I do not know, I do not read anything (or I do not follow). How do I know if it crashes in driver? No, though DPM is really bad. > Without any information about how it actually fails, it's pretty much > impossible to fix. If I apply one of the matrices, it works, if I multiply two of them, it does not. > When I check it now, it should have everything. The other question: does > this work on older Mesa? Say... a 10.2 stable release? Yes, it works on 10.2.5 > You can... at some point there will probably be a patch for you to test, and > that won't be in PPA. You can probably wait to worry about it until such a > patch exists. Ok, hope the process is seamless. -- You are receiving this mail because: You are the assignee for the bug. --1408048541.aDCf12aa2.4794 Date: Thu, 14 Aug 2014 20:35:41 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8"

Comment # 4 on bug 82586 from
(In reply to comment #3)
> You say it doesn't work.  That's pretty vague.  If it fails in some way,
> what is the mode of the failure?  (See also
> http://en.wikipedia.org/wiki/Failure_causes#Component_failure)
It just does not display anything, hence either whole pipeline crashes (and
OpenGL KHR_debug does not print it out) or the transform moves vertices outside
clipping region (I might try transform feedback over weekend).

> Are the member locations incorrect (query through the API)?  Is the
> row-major / column-major orientation of the matrices incorrect (query
> through the API)?  Is the generated code reading the wrong locations?  Does
> it crash in the driver?  Does your computer catch on fire?
Locations are correct (at least if gl query returns them properly). I do not
know, I do not read anything (or I do not follow). How do I know if it crashes
in driver? No, though DPM is really bad.

> Without any information about how it actually fails, it's pretty much
> impossible to fix.

If I apply one of the matrices, it works, if I multiply two of them, it does
not.

> When I check it now, it should have everything.  The other question: does
> this work on older Mesa?  Say... a 10.2 stable release?
Yes, it works on 10.2.5

> You can... at some point there will probably be a patch for you to test, and
> that won't be in PPA.  You can probably wait to worry about it until such a
> patch exists.

Ok, hope the process is seamless.


You are receiving this mail because:
  • You are the assignee for the bug.
--1408048541.aDCf12aa2.4794-- --===============0076303504== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel --===============0076303504==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon@freedesktop.org Subject: [Bug 82586] UBO matrix in std140 struct does not work Date: Fri, 15 Aug 2014 07:17:29 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1184381588==" Return-path: Received: from culpepper.freedesktop.org (unknown [131.252.210.165]) by gabe.freedesktop.org (Postfix) with ESMTP id 60D366E2FE for ; Fri, 15 Aug 2014 00:17:29 -0700 (PDT) In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org --===============1184381588== Content-Type: multipart/alternative; boundary="1408087049.7AbD3B2.6564"; charset="us-ascii" --1408087049.7AbD3B2.6564 Date: Fri, 15 Aug 2014 07:17:29 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" https://bugs.freedesktop.org/show_bug.cgi?id=82586 --- Comment #5 from pavol@klacansky.com --- I have got new mesa from PPA and problem seems to be gone. How can I find exact commit fixing this, please? -- You are receiving this mail because: You are the assignee for the bug. --1408087049.7AbD3B2.6564 Date: Fri, 15 Aug 2014 07:17:29 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8"

Comment # 5 on bug 82586 from
I have got new mesa from PPA and problem seems to be gone. How can I find exact
commit fixing this, please?


You are receiving this mail because:
  • You are the assignee for the bug.
--1408087049.7AbD3B2.6564-- --===============1184381588== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel --===============1184381588==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon@freedesktop.org Subject: [Bug 82586] UBO matrix in std140 struct does not work Date: Fri, 15 Aug 2014 15:13:55 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1919545236==" Return-path: Received: from culpepper.freedesktop.org (unknown [131.252.210.165]) by gabe.freedesktop.org (Postfix) with ESMTP id 8DB236E800 for ; Fri, 15 Aug 2014 08:13:55 -0700 (PDT) In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org --===============1919545236== Content-Type: multipart/alternative; boundary="1408115635.Ee6544F3.18763"; charset="us-ascii" --1408115635.Ee6544F3.18763 Date: Fri, 15 Aug 2014 15:13:55 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" https://bugs.freedesktop.org/show_bug.cgi?id=82586 --- Comment #6 from Roland Scheidegger --- (In reply to comment #5) > I have got new mesa from PPA and problem seems to be gone. How can I find > exact commit fixing this, please? Just use git bisect. That of course requires you to build mesa yourself. -- You are receiving this mail because: You are the assignee for the bug. --1408115635.Ee6544F3.18763 Date: Fri, 15 Aug 2014 15:13:55 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8"

Comment # 6 on bug 82586 from
(In reply to comment #5)
> I have got new mesa from PPA and problem seems to be gone. How can I find
> exact commit fixing this, please?

Just use git bisect. That of course requires you to build mesa yourself.


You are receiving this mail because:
  • You are the assignee for the bug.
--1408115635.Ee6544F3.18763-- --===============1919545236== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel --===============1919545236==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon@freedesktop.org Subject: [Bug 82586] UBO matrix in std140 struct does not work Date: Fri, 15 Aug 2014 15:34:14 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0388459033==" Return-path: Received: from culpepper.freedesktop.org (unknown [131.252.210.165]) by gabe.freedesktop.org (Postfix) with ESMTP id 2714A6E805 for ; Fri, 15 Aug 2014 08:34:14 -0700 (PDT) In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org --===============0388459033== Content-Type: multipart/alternative; boundary="1408116854.f2e6bF3.24193"; charset="us-ascii" --1408116854.f2e6bF3.24193 Date: Fri, 15 Aug 2014 15:34:14 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" https://bugs.freedesktop.org/show_bug.cgi?id=82586 --- Comment #7 from Ilia Mirkin --- Probably one of http://cgit.freedesktop.org/mesa/mesa/commit/?id=d52202141ebe28cd9f8d305827552fafccb279fd http://cgit.freedesktop.org/mesa/mesa/commit/?id=da9c3ed304be5d08ff989d61c6e2d1be8a845767 -- You are receiving this mail because: You are the assignee for the bug. --1408116854.f2e6bF3.24193 Date: Fri, 15 Aug 2014 15:34:14 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8"


You are receiving this mail because:
  • You are the assignee for the bug.
--1408116854.f2e6bF3.24193-- --===============0388459033== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel --===============0388459033==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon@freedesktop.org Subject: [Bug 82586] UBO matrix in std140 struct does not work Date: Sat, 16 Aug 2014 20:34:53 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0079053394==" Return-path: Received: from culpepper.freedesktop.org (unknown [131.252.210.165]) by gabe.freedesktop.org (Postfix) with ESMTP id 692F56E2B0 for ; Sat, 16 Aug 2014 13:34:53 -0700 (PDT) In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org --===============0079053394== Content-Type: multipart/alternative; boundary="1408221293.E2A2582.7328"; charset="us-ascii" --1408221293.E2A2582.7328 Date: Sat, 16 Aug 2014 20:34:53 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" https://bugs.freedesktop.org/show_bug.cgi?id=82586 --- Comment #8 from pavol@klacansky.com --- I have tried to compile mesa, but all I get is GL 2.1 OpenGL version string: 2.1 Mesa 10.3.0-devel (git-9d9879a) I just build master without any non-default flags. Can you help, please? (I would like to bisect, and I reported other bug which I want to test) -- You are receiving this mail because: You are the assignee for the bug. --1408221293.E2A2582.7328 Date: Sat, 16 Aug 2014 20:34:53 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8"

Comment # 8 on bug 82586 from
I have tried to compile mesa, but all I get is GL 2.1

OpenGL version string: 2.1 Mesa 10.3.0-devel (git-9d9879a)

I just build master without any non-default flags. Can you help, please?
(I would like to bisect, and I reported other bug which I want to test)


You are receiving this mail because:
  • You are the assignee for the bug.
--1408221293.E2A2582.7328-- --===============0079053394== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel --===============0079053394==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon@freedesktop.org Subject: [Bug 82586] UBO matrix in std140 struct does not work Date: Sat, 16 Aug 2014 20:39:28 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1001058522==" Return-path: Received: from culpepper.freedesktop.org (unknown [131.252.210.165]) by gabe.freedesktop.org (Postfix) with ESMTP id C97BA6E2B2 for ; Sat, 16 Aug 2014 13:39:28 -0700 (PDT) In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org --===============1001058522== Content-Type: multipart/alternative; boundary="1408221568.De5ed4A3.9034"; charset="us-ascii" --1408221568.De5ed4A3.9034 Date: Sat, 16 Aug 2014 20:39:28 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" https://bugs.freedesktop.org/show_bug.cgi?id=82586 --- Comment #9 from Ilia Mirkin --- --enable-texture-float -- You are receiving this mail because: You are the assignee for the bug. --1408221568.De5ed4A3.9034 Date: Sat, 16 Aug 2014 20:39:28 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8"

Comment # 9 on bug 82586 from
--enable-texture-float


You are receiving this mail because:
  • You are the assignee for the bug.
--1408221568.De5ed4A3.9034-- --===============1001058522== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel --===============1001058522==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon@freedesktop.org Subject: [Bug 82586] UBO matrix in std140 struct does not work Date: Sun, 17 Aug 2014 10:33:08 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0427831182==" Return-path: Received: from culpepper.freedesktop.org (unknown [131.252.210.165]) by gabe.freedesktop.org (Postfix) with ESMTP id 383DC6E222 for ; Sun, 17 Aug 2014 03:33:08 -0700 (PDT) In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org --===============0427831182== Content-Type: multipart/alternative; boundary="1408271588.FBB82.10752"; charset="us-ascii" --1408271588.FBB82.10752 Date: Sun, 17 Aug 2014 10:33:08 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" https://bugs.freedesktop.org/show_bug.cgi?id=82586 pavol@klacansky.com changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |RESOLVED Resolution|--- |FIXED --- Comment #10 from pavol@klacansky.com --- Thanks, I am not sure if I done it correctly, but bisect gave me this as first bad commit (if I understand it means the bug was introduced in it) http://cgit.freedesktop.org/mesa/mesa/commit/?id=01bf8bb87565ed3677e43c6b6deeb90378d88647 -- You are receiving this mail because: You are the assignee for the bug. --1408271588.FBB82.10752 Date: Sun, 17 Aug 2014 10:33:08 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8" changed bug 82586
What Removed Added
Status NEEDINFO RESOLVED
Resolution --- FIXED

Comment # 10 on bug 82586 from
Thanks, I am not sure if I done it correctly, but bisect gave me this as first
bad commit (if I understand it means the bug was introduced in it)

http://cgit.freedesktop.org/mesa/mesa/commit/?id=01bf8bb87565ed3677e43c6b6deeb90378d88647


You are receiving this mail because:
  • You are the assignee for the bug.
--1408271588.FBB82.10752-- --===============0427831182== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel --===============0427831182==-- From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon@freedesktop.org Subject: [Bug 82586] UBO matrix in std140 struct does not work Date: Sun, 17 Aug 2014 12:27:02 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0847469705==" Return-path: Received: from culpepper.freedesktop.org (unknown [131.252.210.165]) by gabe.freedesktop.org (Postfix) with ESMTP id 6DEF46E00D for ; Sun, 17 Aug 2014 05:27:02 -0700 (PDT) In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" To: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org --===============0847469705== Content-Type: multipart/alternative; boundary="1408278422.fFde2.12095"; charset="us-ascii" --1408278422.fFde2.12095 Date: Sun, 17 Aug 2014 12:27:02 +0000 MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" https://bugs.freedesktop.org/show_bug.cgi?id=82586 --- Comment #11 from pavol@klacansky.com --- Fixed here, thanks. http://cgit.freedesktop.org/mesa/mesa/commit/?id=da9c3ed304be5d08ff989d61c6e2d1be8a845767 -- You are receiving this mail because: You are the assignee for the bug. --1408278422.fFde2.12095 Date: Sun, 17 Aug 2014 12:27:02 +0000 MIME-Version: 1.0 Content-Type: text/html; charset="UTF-8"


You are receiving this mail because:
  • You are the assignee for the bug.
--1408278422.fFde2.12095-- --===============0847469705== Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ dri-devel mailing list dri-devel@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/dri-devel --===============0847469705==--