This output variables gives more flexibility for future changes
in autoconf to detect if it is needed to auto-generate files and
check for the auto-generation dependencies.
It is still returning error when Python is not installed.
Signed-off-by: Samuel Iglesias Gonsalvez
---
configure.ac
From: Dave Airlie
(just resending with some cleanups/updates).
At the moment to get an EGL image to a dma-buf file descriptor,
you have to use EGL_MESA_drm_image, and then use libdrm to
convert this to a file descriptor.
This extension just provides an API modelled on EGL_MESA_drm_image,
to ret
On 3 March 2015 at 13:57, Dave Airlie wrote:
>
> Okay I've revised this to add some more info to the interface,
> essentially I need to get the fourcc back so I can later pass
> it across the "wire" to the EGL_EXT_image_dma_buf_import, also
> the number of planes (though for my usecase I don't car
On 03/ 2/15 08:20 AM, Brian Paul wrote:
On 03/01/2015 02:00 PM, Alan Coopersmith wrote:
On 03/ 1/15 12:52 PM, Vinson Lee wrote:
Fix build on FreeBSD.
Bugzilla:
https://urldefense.proofpoint.com/v2/url?u=https-3A__bugs.freedesktop.org_show-5Fbug.cgi-3Fid-3D89364&d=AwIGaQ&c=Sqcl0Ez6M0X8aeM67LKIi
On 03/ 1/15 02:31 PM, Emil Velikov wrote:
- Considering the lack of -fvisibility, what is the normal visibility
"level" - hidden or default ? If the latter this means that every
library/module built exports a ton of internal symbols.
Default, unless you pass the -xldscope=hidden flag to Studi
Okay I've revised this to add some more info to the interface,
essentially I need to get the fourcc back so I can later pass
it across the "wire" to the EGL_EXT_image_dma_buf_import, also
the number of planes (though for my usecase I don't care so much).
The problem with EGL_MESA_drm_image is tha
From: Dave Airlie
At the moment to get an EGL image to a dma-buf file descriptor,
you have to use EGL_MESA_drm_image, and then use libdrm to
convert this to a file descriptor.
This extension just provides an API modelled on EGL_MESA_drm_image,
to return a dma-buf file descriptor.
v2: update spe
---
src/glsl/nir/nir_worklist.c | 10 +-
src/glsl/nir/nir_worklist.h | 4 ++--
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/glsl/nir/nir_worklist.c b/src/glsl/nir/nir_worklist.c
index a8baae9..3087a1d 100644
--- a/src/glsl/nir/nir_worklist.c
+++ b/src/glsl/nir/nir_wo
On Mon, Mar 2, 2015 at 4:37 PM, Brian Paul wrote:
> On 03/02/2015 04:03 PM, Eric Anholt wrote:
>>
>> Kenneth Graunke writes:
>>
>>> Generated by the following Coccinelle semantic patch:
>>>
>>> @@
>>> expression E;
>>> @@
>>> if (
>>> -E
>>> +unlikely(E)
>>> )
>>> { ... _mesa_error(...) ... }
>
Brian Paul writes:
> On 03/02/2015 04:03 PM, Eric Anholt wrote:
>> Kenneth Graunke writes:
>>
>>> Generated by the following Coccinelle semantic patch:
>>>
>>> @@
>>> expression E;
>>> @@
>>> if (
>>> -E
>>> +unlikely(E)
>>> )
>>> { ... _mesa_error(...) ... }
>>>
>>> Improves performance in Og
On Mon, Mar 2, 2015 at 4:45 PM, Dave Airlie wrote:
> why can't we just do _mesa_error -> __mesa_error, #define _mesa_error
> unlikely(__mesa_error) or some such.
I don't think wrapping the function call in unlikely() does anything.
___
mesa-dev mailing
On Sat, Jan 17, 2015 at 5:17 AM, Kenneth Graunke wrote:
> On Tuesday, January 13, 2015 03:40:32 PM Matt Turner wrote:
>> On Tue, Jan 13, 2015 at 3:35 PM, Matt Turner wrote:
>> > Otherwise, we would have necessarily read the results or eliminated the
>> > dead SEND. In either case, no work around
On Mon, Mar 2, 2015 at 2:36 PM, Matt Turner wrote:
> On Sun, Mar 1, 2015 at 7:08 PM, Ilia Mirkin wrote:
>> Signed-off-by: Ilia Mirkin
>> ---
>
>> IP Status
>>
>> Please contact AMD regarding any intellectual property questions/issues
>> associated with this extension.
>
> Ugh?
Not sure
On 3 March 2015 at 10:37, Brian Paul wrote:
> On 03/02/2015 04:03 PM, Eric Anholt wrote:
>>
>> Kenneth Graunke writes:
>>
>>> Generated by the following Coccinelle semantic patch:
>>>
>>> @@
>>> expression E;
>>> @@
>>> if (
>>> -E
>>> +unlikely(E)
>>> )
>>> { ... _mesa_error(...) ... }
>>>
>>>
On 03/02/2015 04:03 PM, Eric Anholt wrote:
Kenneth Graunke writes:
Generated by the following Coccinelle semantic patch:
@@
expression E;
@@
if (
-E
+unlikely(E)
)
{ ... _mesa_error(...) ... }
Improves performance in OglBatch7 (a CPU-bound microbenchmark) on
an i7 4750HQ (Haswell) by 1.085
On 03/02/2015 03:48 PM, Kenneth Graunke wrote:
Generated by the following Coccinelle semantic patch:
@@
expression E;
@@
if (
-E
+unlikely(E)
)
{ ... _mesa_error(...) ... }
Improves performance in OglBatch7 (a CPU-bound microbenchmark) on
an i7 4750HQ (Haswell) by 1.08546% +/- 0.519734% (n=29
DRM_IOCTL_I915_GEM_WAIT takes an int64_t for the timeout value but
GL_ARB_sync takes an uint64_t. Further, the ioctl used to wait
indefinitely when passed a negative timeout, but it's been broken and
now returns immediately in that case. Thus, if an application passes
UINT64_MAX to wait forever,
On Fri, Jan 23, 2015 at 1:38 PM, Matt Turner wrote:
> On Sat, Jan 17, 2015 at 12:07 AM, Kenneth Graunke
> wrote:
>> With an updated commit message and Piglit passing (I'll test and let you
>> know),
>> Reviewed-by: Kenneth Graunke
>
> Reminder to piglit these the next time you power on your Ge
Kenneth Graunke writes:
> Generated by the following Coccinelle semantic patch:
>
> @@
> expression E;
> @@
> if (
> -E
> +unlikely(E)
> )
> { ... _mesa_error(...) ... }
>
> Improves performance in OglBatch7 (a CPU-bound microbenchmark) on
> an i7 4750HQ (Haswell) by 1.08546% +/- 0.519734% (n=29
Generated by the following Coccinelle semantic patch:
@@
expression E;
@@
if (
-E
+unlikely(E)
)
{ ... _mesa_error(...) ... }
Improves performance in OglBatch7 (a CPU-bound microbenchmark) on
an i7 4750HQ (Haswell) by 1.08546% +/- 0.519734% (n=292).
Signed-off-by: Kenneth Graunke
---
Here is
We're just talking about unused and useless things here. I think that
TGSI_TYPE_UNSIGNED should be removed and TGSI_TYPE_SIGNED should be
renamed to TGSI_TYPE_INT. Until then, this type distiction serves no
purpose.
I'll gladly move all those opcodes under TGSI_TYPE_SIGNED, but please
don't try to
> On Mar 2, 2015, at 1:19 PM, Tom Stellard wrote:
>
> On Mon, Mar 02, 2015 at 10:14:00PM +0100, Marek Olšák wrote:
>> On Mon, Mar 2, 2015 at 10:05 PM, Tom Stellard wrote:
>>> On Mon, Mar 02, 2015 at 12:54:16PM +0100, Marek Olšák wrote:
From: Marek Olšák
---
src/gallium/dri
On Mon, Mar 2, 2015 at 4:48 PM, Roland Scheidegger wrote:
> Maybe this is a somewhat
> artificial distinction. Honestly I'm not quite sure why for some of the
> opcodes signed or unsigned was chosen, Ilja wrote it so he might know.
I picked whatever made sense for the return value range... not a
Am 02.03.2015 um 20:38 schrieb Marek Olšák:
> On Mon, Mar 2, 2015 at 5:12 PM, Roland Scheidegger wrote:
>> Am 02.03.2015 um 12:52 schrieb Marek Olšák:
>>> From: Marek Olšák
>>>
>>> ---
>>> src/gallium/auxiliary/tgsi/tgsi_info.c | 8
>>> 1 file changed, 8 insertions(+)
>>>
>>> diff --git
On Mon, Mar 02, 2015 at 10:14:00PM +0100, Marek Olšák wrote:
> On Mon, Mar 2, 2015 at 10:05 PM, Tom Stellard wrote:
> > On Mon, Mar 02, 2015 at 12:54:16PM +0100, Marek Olšák wrote:
> >> From: Marek Olšák
> >>
> >> ---
> >> src/gallium/drivers/radeonsi/si_shader.c | 22 --
> >>
On Mon, Mar 2, 2015 at 10:05 PM, Tom Stellard wrote:
> On Mon, Mar 02, 2015 at 12:54:16PM +0100, Marek Olšák wrote:
>> From: Marek Olšák
>>
>> ---
>> src/gallium/drivers/radeonsi/si_shader.c | 22 --
>> 1 file changed, 16 insertions(+), 6 deletions(-)
>>
>> diff --git a/src/g
On Mon, Mar 02, 2015 at 12:54:16PM +0100, Marek Olšák wrote:
> From: Marek Olšák
>
> ---
> src/gallium/drivers/radeonsi/si_shader.c | 22 --
> 1 file changed, 16 insertions(+), 6 deletions(-)
>
> diff --git a/src/gallium/drivers/radeonsi/si_shader.c
> b/src/gallium/drivers/
On Mon, 02 Mar 2015 12:54:18 +0100, Marek Olšák wrote:
From: Marek Olšák
---
docs/GL3.txt | 2 +-
src/gallium/drivers/radeonsi/si_shader.c | 4
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/docs/GL3.txt b/docs/GL3.txt
index 43bbf85..0487cdf 10
On Mon, Mar 02, 2015 at 12:54:15PM +0100, Marek Olšák wrote:
> From: Marek Olšák
>
For some reason I thought doing this would require changes to LLVM,
but I guess I was wrong.
Reviewed-by: Tom Stellard
> None of the instructions use a pointer argument.
> (+ small cosmetic changes)
> ---
> ..
Am 02.03.2015 um 21:27 schrieb Marek Olšák:
> On Mon, Mar 2, 2015 at 9:16 PM, Roland Scheidegger wrote:
>> Am 02.03.2015 um 20:50 schrieb Ilia Mirkin:
>>> On Mon, Mar 2, 2015 at 2:44 PM, Marek Olšák
>>> wrote:
On Mon, Mar 2, 2015 at 5:09 PM, Ilia Mirkin
wrote:
> Like Roland mention
Hello,
I have the pleasure to announce you that the X.Org Foundation has been
accepted as a mentoring organisation for the Google Summer of Code 2015.
This means that your project can receive students again this year!
Here are the important dates coming[0]:
- 16 March: Student application per
The series is
Reviewed-by: Mark Janes
Timothy Arceri writes:
> V2: return true when var->type is unsized by max access is within valid range
>
> ---
> src/glsl/linker.cpp | 89
> ++---
> src/glsl/linker.h | 5 +++
> 2 files changed, 55 inse
On Mon, Mar 2, 2015 at 9:16 PM, Roland Scheidegger wrote:
> Am 02.03.2015 um 20:50 schrieb Ilia Mirkin:
>> On Mon, Mar 2, 2015 at 2:44 PM, Marek Olšák
>> wrote:
>>> On Mon, Mar 2, 2015 at 5:09 PM, Ilia Mirkin
>>> wrote:
Like Roland mentioned, you need to add DFMA, and the relevant
case
On Mon, Mar 2, 2015 at 3:16 PM, Roland Scheidegger wrote:
> Am 02.03.2015 um 20:50 schrieb Ilia Mirkin:
>> On Mon, Mar 2, 2015 at 2:44 PM, Marek Olšák
>> wrote:
>>> On Mon, Mar 2, 2015 at 5:09 PM, Ilia Mirkin
>>> wrote:
Like Roland mentioned, you need to add DFMA, and the relevant
case
Am 02.03.2015 um 20:50 schrieb Ilia Mirkin:
> On Mon, Mar 2, 2015 at 2:44 PM, Marek Olšák
> wrote:
>> On Mon, Mar 2, 2015 at 5:09 PM, Ilia Mirkin
>> wrote:
>>> Like Roland mentioned, you need to add DFMA, and the relevant
>>> cases to glsl_to_tgsi_visitor::get_opcode so that it can be
>>> selecte
On Mon, Mar 2, 2015 at 8:02 AM, Jose Fonseca wrote:
> On 27/02/15 16:15, Brian Paul wrote:
>
>> On 02/27/2015 09:10 AM, Ian Romanick wrote:
>>
>>> On 02/26/2015 10:07 AM, Brian Paul wrote:
>>>
On 02/26/2015 09:51 AM, Jose Fonseca wrote:
> This is to enable the code to build with -We
On Mon, Mar 2, 2015 at 11:33 AM, Ilia Mirkin wrote:
> On Mon, Mar 2, 2015 at 2:32 PM, Jason Ekstrand
> wrote:
> >
> >
> > On Mon, Mar 2, 2015 at 11:18 AM, Ilia Mirkin
> wrote:
> >>
> >> Hmmm... I was just looking at this code in connection to attepmting to
> >> enable ARB_texture_stencil8, and
On Mon, Mar 2, 2015 at 2:44 PM, Marek Olšák wrote:
> On Mon, Mar 2, 2015 at 5:09 PM, Ilia Mirkin wrote:
>> Like Roland mentioned, you need to add DFMA, and the relevant cases to
>> glsl_to_tgsi_visitor::get_opcode so that it can be selected.
>
> I plan to add DFMA too, but it's really low priorit
On Mon, Mar 2, 2015 at 5:09 PM, Ilia Mirkin wrote:
> Like Roland mentioned, you need to add DFMA, and the relevant cases to
> glsl_to_tgsi_visitor::get_opcode so that it can be selected.
I plan to add DFMA too, but it's really low priority for me right now.
I can wait with this patch until it bec
On Monday, March 02, 2015 03:24:18 PM Jose Fonseca wrote:
> On 28/02/15 00:25, Kenneth Graunke wrote:
> > On Friday, February 27, 2015 09:58:51 PM Jose Fonseca wrote:
> >> Sorry, this didn't pop up when I built it here. And I'm afraid I won't
> >> have time to look into this today, and possibly t
On Mon, Mar 2, 2015 at 5:12 PM, Roland Scheidegger wrote:
> Am 02.03.2015 um 12:52 schrieb Marek Olšák:
>> From: Marek Olšák
>>
>> ---
>> src/gallium/auxiliary/tgsi/tgsi_info.c | 8
>> 1 file changed, 8 insertions(+)
>>
>> diff --git a/src/gallium/auxiliary/tgsi/tgsi_info.c
>> b/src/ga
On Sun, Mar 1, 2015 at 7:08 PM, Ilia Mirkin wrote:
> Signed-off-by: Ilia Mirkin
> ---
> IP Status
>
> Please contact AMD regarding any intellectual property questions/issues
> associated with this extension.
Ugh?
___
mesa-dev mailing list
mesa
On Mon, Mar 2, 2015 at 2:32 PM, Jason Ekstrand wrote:
>
>
> On Mon, Mar 2, 2015 at 11:18 AM, Ilia Mirkin wrote:
>>
>> Hmmm... I was just looking at this code in connection to attepmting to
>> enable ARB_texture_stencil8, and it _seems_ like that should be if
>> (ARB_texture_stencil8) -- I didn't
On Mon, Mar 2, 2015 at 11:18 AM, Ilia Mirkin wrote:
> Hmmm... I was just looking at this code in connection to attepmting to
> enable ARB_texture_stencil8, and it _seems_ like that should be if
> (ARB_texture_stencil8) -- I didn't see what in ARB_stencil_texturing
> had to do with being able to h
Tom Stellard writes:
> ---
> src/gallium/state_trackers/clover/api/device.cpp | 3 +--
> src/gallium/state_trackers/clover/core/device.cpp | 6 ++
> src/gallium/state_trackers/clover/core/device.hpp | 1 +
> 3 files changed, 8 insertions(+), 2 deletions(-)
>
> diff --git a/src/gallium/state
Hmmm... I was just looking at this code in connection to attepmting to
enable ARB_texture_stencil8, and it _seems_ like that should be if
(ARB_texture_stencil8) -- I didn't see what in ARB_stencil_texturing
had to do with being able to have a GL_STENCIL_INDEX* internal
format...
-ilia
On Fri, F
On Mon, Mar 2, 2015 at 12:11 PM, Roland Scheidegger wrote:
> Interesting. The way I read this though is that this format is more or
> less solely used as a workaround for chips not supporting (or at least
> not exposing) s3tc. I guess I understand now why the encoding format
> wasn't published...
On Fri, Feb 27, 2015 at 1:24 PM, Ian Romanick wrote:
> On 02/27/2015 11:34 AM, Matt Turner wrote:
>> We can safely propagate the conditional mod to an instruction with a
>> different type if the conditional mod does not involve comparing for
>> equality with zero (or probably NaN, but ignore that
On Mon, Mar 2, 2015 at 10:35 AM, Emil Velikov wrote:
> Thanks for the review. If you get any ideas wrt patch#6 (stop the
> options.h re-generation), I'm all ears.
I'll probably have to play with it myself to see what's going on. I've
got ~three bugs to fix and then I'll take a look.
_
On Mon, Mar 2, 2015 at 5:48 PM, Roland Scheidegger wrote:
> Am 02.03.2015 um 17:12 schrieb Marek Olšák:
>> On Mon, Mar 2, 2015 at 4:55 PM, Roland Scheidegger
>> wrote:
>>> Am 02.03.2015 um 12:52 schrieb Marek Olšák:
From: Marek Olšák
Needed by ARB_gpu_shader5.
---
src/
On 02/03/15 18:19, Matt Turner wrote:
> On Mon, Mar 2, 2015 at 10:02 AM, Matt Turner wrote:
>> On Mon, Mar 2, 2015 at 10:02 AM, Matt Turner wrote:
>>> On Mon, Mar 2, 2015 at 7:58 AM, Emil Velikov
>>> wrote:
Drop the no longer present get_es{1,2}.c from the list.
Signed-off-by: Em
On 02/03/15 18:17, Matt Turner wrote:
> On Mon, Mar 2, 2015 at 7:58 AM, Emil Velikov wrote:
>> I.e. add shared-glapi/glapi_mapi_tmp.h to the SOURCES list. Otherwise
>> there will be no knowledge that the file is required by others for the
>> build. Thus autotools won't pick it up for the distribut
On Mon, Mar 2, 2015 at 10:02 AM, Matt Turner wrote:
> On Mon, Mar 2, 2015 at 10:02 AM, Matt Turner wrote:
>> On Mon, Mar 2, 2015 at 7:58 AM, Emil Velikov
>> wrote:
>>> Drop the no longer present get_es{1,2}.c from the list.
>>>
>>> Signed-off-by: Emil Velikov
>>> ---
>>> src/mesa/main/.gitign
On Mon, Mar 2, 2015 at 7:58 AM, Emil Velikov wrote:
> I.e. add shared-glapi/glapi_mapi_tmp.h to the SOURCES list. Otherwise
> there will be no knowledge that the file is required by others for the
> build. Thus autotools won't pick it up for the distribution tarball.
>
> Cc: "10.5"
> Signed-off-b
On Mon, Mar 2, 2015 at 7:58 AM, Emil Velikov wrote:
> Drop the no longer present get_es{1,2}.c from the list.
>
> Signed-off-by: Emil Velikov
> ---
> src/mesa/main/.gitignore | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/src/mesa/main/.gitignore b/src/mesa/main/.git
On Mon, Mar 2, 2015 at 10:02 AM, Matt Turner wrote:
> On Mon, Mar 2, 2015 at 7:58 AM, Emil Velikov wrote:
>> Drop the no longer present get_es{1,2}.c from the list.
>>
>> Signed-off-by: Emil Velikov
>> ---
>> src/mesa/main/.gitignore | 4 +---
>> 1 file changed, 1 insertion(+), 3 deletions(-)
>
Interesting. The way I read this though is that this format is more or
less solely used as a workaround for chips not supporting (or at least
not exposing) s3tc. I guess I understand now why the encoding format
wasn't published...
Well ok I can live with this if it's indeed still useful (I guess
th
---
src/gallium/state_trackers/clover/api/device.cpp | 3 +--
src/gallium/state_trackers/clover/core/device.cpp | 6 ++
src/gallium/state_trackers/clover/core/device.hpp | 1 +
3 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/src/gallium/state_trackers/clover/api/device.cpp
b/s
v2:
- Report correct values for CL_DEVICE_NATIVE_VECTOR_WIDTH_DOUBLE
and CL_DEVICE_PREFERRED_VECTOR_WIDTH_DOUBLE.
- Only define cl_khr_fp64 if the extension is supported.
- Remove trailing space from extension string.
- Rename device query function from cl_khr_fp86() to
has_doubles(
Am 02.03.2015 um 17:12 schrieb Marek Olšák:
> On Mon, Mar 2, 2015 at 4:55 PM, Roland Scheidegger wrote:
>> Am 02.03.2015 um 12:52 schrieb Marek Olšák:
>>> From: Marek Olšák
>>>
>>> Needed by ARB_gpu_shader5.
>>> ---
>>> src/gallium/auxiliary/gallivm/lp_bld_limits.h| 1 +
>>> src/gallium/aux
On 03/01/2015 02:00 PM, Alan Coopersmith wrote:
On 03/ 1/15 12:52 PM, Vinson Lee wrote:
Fix build on FreeBSD.
Bugzilla:
https://urldefense.proofpoint.com/v2/url?u=https-3A__bugs.freedesktop.org_show-5Fbug.cgi-3Fid-3D89364&d=AwIGaQ&c=Sqcl0Ez6M0X8aeM67LKIiDJAXVeAw-YihVMNtXt-uEs&r=T0t4QG7chq2ZwJo6
On 03/01/2015 01:52 PM, Vinson Lee wrote:
Fix build on FreeBSD.
Bugzilla:
https://urldefense.proofpoint.com/v2/url?u=https-3A__bugs.freedesktop.org_show-5Fbug.cgi-3Fid-3D89364&d=AwIGaQ&c=Sqcl0Ez6M0X8aeM67LKIiDJAXVeAw-YihVMNtXt-uEs&r=T0t4QG7chq2ZwJo6wilkFznRSFy-8uDKartPGbomVj8&m=omCcGDEwR9xvB9Yq
Am 02.03.2015 um 12:52 schrieb Marek Olšák:
> From: Marek Olšák
>
> ---
> src/gallium/auxiliary/tgsi/tgsi_info.c | 8
> 1 file changed, 8 insertions(+)
>
> diff --git a/src/gallium/auxiliary/tgsi/tgsi_info.c
> b/src/gallium/auxiliary/tgsi/tgsi_info.c
> index e6e0a60..258173d 100644
>
On Mon, Mar 2, 2015 at 4:55 PM, Roland Scheidegger wrote:
> Am 02.03.2015 um 12:52 schrieb Marek Olšák:
>> From: Marek Olšák
>>
>> Needed by ARB_gpu_shader5.
>> ---
>> src/gallium/auxiliary/gallivm/lp_bld_limits.h| 1 +
>> src/gallium/auxiliary/tgsi/tgsi_exec.h | 1 +
>> src/gall
On 27/02/15 15:59, Ian Romanick wrote:
I like the idea as it should prevent future thrash. There are a couple
comments below.
On 02/26/2015 08:51 AM, Jose Fonseca wrote:
The main objective of this change is to enable Linux developers to use
more of C99 throughout Mesa, with confidence that the
Like Roland mentioned, you need to add DFMA, and the relevant cases to
glsl_to_tgsi_visitor::get_opcode so that it can be selected.
On Mon, Mar 2, 2015 at 6:52 AM, Marek Olšák wrote:
> From: Marek Olšák
>
> Needed by ARB_gpu_shader5.
> ---
> src/gallium/auxiliary/gallivm/lp_bld_limits.h| 1
Not required. Additionally this had the side effect of generating the
file, despite it's existence.
Cc: "10.5"
Signed-off-by: Emil Velikov
---
src/mesa/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mesa/Makefile.am b/src/mesa/Makefile.am
index 17697bf..c1c4
While it is proprietary, there's a guide on how to convert it to the
relevant DXTn format:
http://www.guildsoftware.com/papers/2012.Converting.DXTC.to.ATC.pdf
My understanding is that a lot of android games still make use of it,
so it made sense to provide. While freedreno doesn't currently run o
The header is included in ../xmlpool.h. With the latter of which used
directly in a number of places in mesa.
Note that we can also add it (alongside t_option.h) to noinst_HEADERS,
but neither solution fixes the issue that brough us here - namely:
Do not regenerate the headers, if it already exists
On 27/02/15 16:15, Brian Paul wrote:
On 02/27/2015 09:10 AM, Ian Romanick wrote:
On 02/26/2015 10:07 AM, Brian Paul wrote:
On 02/26/2015 09:51 AM, Jose Fonseca wrote:
This is to enable the code to build with -Werror=vla in the short term,
and enable the code to build with MSVC2013 soon after.
On Mon, Mar 2, 2015 at 9:23 AM, Tom Stellard wrote:
> From: Daniel Stone
>
> This fixes almost all piglit regressions when running with
> PIGLIT_PLATFORM=gbm
>
> Tom Stellard:
> - Fix ARGB2101010 format
>
> Cc: "10.4 10.5"
> ---
>
> I'm not sure if the commit message makes sense, I'm open to s
I.e. add shared-glapi/glapi_mapi_tmp.h to the SOURCES list. Otherwise
there will be no knowledge that the file is required by others for the
build. Thus autotools won't pick it up for the distribution tarball.
Cc: "10.5"
Signed-off-by: Emil Velikov
---
src/mapi/Makefile.am | 2 +-
1 file change
Am 02.03.2015 um 12:52 schrieb Marek Olšák:
> From: Marek Olšák
>
> Needed by ARB_gpu_shader5.
> ---
> src/gallium/auxiliary/gallivm/lp_bld_limits.h| 1 +
> src/gallium/auxiliary/tgsi/tgsi_exec.h | 1 +
> src/gallium/auxiliary/tgsi/tgsi_info.c | 2 +-
> src/gallium/aux
Some of the files generated were not in the SOURCES variable, thus
although generated prior to compilation the dependency tracking was
incomplete. The latter of which resulted in the files missing from the
distribution tarball.
Cc: "10.5"
Signed-off-by: Emil Velikov
---
src/mesa/Makefile.source
As mentioned in bug https://bugs.freedesktop.org/show_bug.cgi?id=89328
there are some cases in mesa, where we generate sources for
distribution builds (yet we should not).
This series attempts to tackle that, with one file outstanding -
options.h. Afaict the last patch ought to fix this, but it
The file is auto-generated, and #included by formats.c. Let's rename it
to reflect the latter. This will also help up fix the dependency
tracking by adding it to the _SOURCES variable, without the side effect
of it being compiled (twice).
Cc: "10.4, 10.5"
Signed-off-by: Emil Velikov
---
src/mes
Drop the no longer present get_es{1,2}.c from the list.
Signed-off-by: Emil Velikov
---
src/mesa/main/.gitignore | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/src/mesa/main/.gitignore b/src/mesa/main/.gitignore
index e65472d..8256ad7 100644
--- a/src/mesa/main/.gitignore
When no devices of the requested type are available, clGetDeviceIDs()
returns a CL_DEVICE_NOT_FOUND, as per the specification.
The specification does not mention explictly wether the number of
devices (return parameter) should be set to 0 in this case, but some
applications will crash (segfault) i
On 27/02/15 22:50, Jason Ekstrand wrote:
On Fri, Feb 27, 2015 at 6:04 AM, Jose Fonseca mailto:jfons...@vmware.com>> wrote:
On 26/02/15 18:07, Brian Paul wrote:
On 02/26/2015 09:51 AM, Jose Fonseca wrote:
This is to enable the code to build with -Werror=vla in the
This looks good to me. It does seem a shame to save everything though
when so little state affects glBlitFramebuffer. However I think even if
we changed it to just save the scissor state we'd still have a problem
with not saving the the GL_FRAMEBUFFER_SRGB state which I think we also
need to do. I
I'll have to say I don't particularly like this. Not only is this a
proprietary format but it's also undisclosed (the encoding is secret).
Is this really all that useful? You enable it only on a3xx, it looks to
me like it would have been mostly interesting for a lot older chips
(pre-a2xx) as the ex
On 28/02/15 00:25, Kenneth Graunke wrote:
On Friday, February 27, 2015 09:58:51 PM Jose Fonseca wrote:
Sorry, this didn't pop up when I built it here. And I'm afraid I won't have
time to look into this today, and possibly the weekend.
If there's not an obvious fix feel free to push a commit c
From: Daniel Stone
This fixes almost all piglit regressions when running with
PIGLIT_PLATFORM=gbm
Tom Stellard:
- Fix ARGB2101010 format
Cc: "10.4 10.5"
---
I'm not sure if the commit message makes sense, I'm open to suggestions.
src/egl/drivers/dri2/platform_drm.c | 16 +++-
1
From: Daniel Stone
This fixes almost all piglit regressions when running with
PIGLIT_PLATFORM=gbm
Tom Stellard:
- Fix ARGB2101010 format
Cc: "10.4 10.5"
---
I'm not sure if the commit message makes sense, I'm open to suggestions.
src/egl/drivers/dri2/platform_drm.c | 16 +++-
1
Ping. I don't want this one to get lost in the header file churn.
--Jason
On Feb 27, 2015 12:33 PM, "Jason Ekstrand" wrote:
> Alternatively, it's probably safe (and faster) to just save/restore the
> scissor in meta_begin/end. The _mesa_meta_BlitFramebuffer implementation
> stashes everything e
Ben Widawsky writes:
> I guess I'd appreciate a comment about how the total_width is
> guaranteed to be a multiple of 64, and therefore is a multiple of all
> possible H_ALIGNS. This is required to meet the qpitch restraint in
> the surface format, "This field must be set to an integer multiple o
From: Marek Olšák
And use AND/OR in special cases.
This universal helper will be used a lot (especially by tessellation).
---
src/gallium/drivers/radeonsi/si_shader.c | 48 +---
1 file changed, 32 insertions(+), 16 deletions(-)
diff --git a/src/gallium/drivers/radeo
From: Marek Olšák
---
.../drivers/radeon/radeon_setup_tgsi_llvm.c| 28 ++
1 file changed, 28 insertions(+)
diff --git a/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c
b/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c
index 034095f..c6132d3 100644
--- a/src/
From: Marek Olšák
---
src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c | 2 ++
src/gallium/drivers/radeonsi/si_pipe.c | 3 ++-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c
b/src/gallium/drivers/radeon/radeon_se
From: Marek Olšák
---
docs/GL3.txt | 2 +-
.../drivers/radeon/radeon_setup_tgsi_llvm.c| 92 ++
2 files changed, 93 insertions(+), 1 deletion(-)
diff --git a/docs/GL3.txt b/docs/GL3.txt
index 0487cdf..8fd2f4a 100644
--- a/docs/GL
From: Marek Olšák
---
docs/GL3.txt | 2 +-
src/gallium/drivers/radeonsi/si_shader.c | 4
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/docs/GL3.txt b/docs/GL3.txt
index 43bbf85..0487cdf 100644
--- a/docs/GL3.txt
+++ b/docs/GL3.txt
@@ -106,7 +106,7
From: Marek Olšák
---
src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c | 8
1 file changed, 8 insertions(+)
diff --git a/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c
b/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c
index 385d3ad..034095f 100644
--- a/src/gallium/drivers
From: Marek Olšák
---
src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c | 2 ++
src/gallium/drivers/radeonsi/si_pipe.c | 2 +-
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c
b/src/gallium/drivers/radeon/radeon_set
From: Marek Olšák
---
src/gallium/drivers/radeonsi/si_shader.c | 22 --
1 file changed, 16 insertions(+), 6 deletions(-)
diff --git a/src/gallium/drivers/radeonsi/si_shader.c
b/src/gallium/drivers/radeonsi/si_shader.c
index b0417ed..f125483 100644
--- a/src/gallium/drivers/
From: Marek Olšák
None of the instructions use a pointer argument.
(+ small cosmetic changes)
---
.../drivers/radeon/radeon_setup_tgsi_llvm.c| 25 --
1 file changed, 9 insertions(+), 16 deletions(-)
diff --git a/src/gallium/drivers/radeon/radeon_setup_tgsi_llvm.c
b/
From: Marek Olšák
Needed by ARB_gpu_shader5.
---
src/gallium/auxiliary/gallivm/lp_bld_limits.h| 1 +
src/gallium/auxiliary/tgsi/tgsi_exec.h | 1 +
src/gallium/auxiliary/tgsi/tgsi_info.c | 2 +-
src/gallium/auxiliary/tgsi/tgsi_util.c | 1 +
src/gallium/docs/s
From: Marek Olšák
---
src/gallium/auxiliary/tgsi/tgsi_info.c | 8
1 file changed, 8 insertions(+)
diff --git a/src/gallium/auxiliary/tgsi/tgsi_info.c
b/src/gallium/auxiliary/tgsi/tgsi_info.c
index e6e0a60..258173d 100644
--- a/src/gallium/auxiliary/tgsi/tgsi_info.c
+++ b/src/gallium/a
https://bugs.freedesktop.org/show_bug.cgi?id=89372
Marek Olšák changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
https://bugs.freedesktop.org/show_bug.cgi?id=77449
Bug 77449 depends on bug 89377, which changed state.
Bug 89377 Summary: [radeonsi] "Hand of Fate" is stuck on SIGPWR/SIGXCPU after
start
https://bugs.freedesktop.org/show_bug.cgi?id=89377
What|Removed |Added
--
https://bugs.freedesktop.org/show_bug.cgi?id=89311
Samuel Iglesias changed:
What|Removed |Added
Status|NEW |RESOLVED
Resolution|---
1 - 100 of 105 matches
Mail list logo