https://bugs.freedesktop.org/show_bug.cgi?id=75226
Stepan Bakshaev changed:
What|Removed |Added
CC||step2back+freedesktop@gmail
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.
Signed-off-by:
On Son, 2014-03-02 at 19:58 +0100, Julien Cristau wrote:
> From: Roland Stigge
>
> In the case of powerpc, mesa activates some altivec instructions
> that are unknown on the powerpcspe architecture (see
> https://wiki.debian.org/PowerPCSPEPort), causing a build failure as the
> 'vand' opcode is n
There is a comment and two checks in the i965 dma-buf importer,
* Images originating via EGL_EXT_image_dma_buf_import can be used only
* with GL_OES_EGL_image_external only.
however I can't find any reference to this in the spec txt, and
removing the checks make my test app run fine using TEXTURE
From: Marek Olšák
Also translate the Y__X swizzle.
---
src/gallium/drivers/radeon/r600_pipe_common.h | 1 +
src/gallium/drivers/radeon/r600_texture.c | 54 ++
src/gallium/drivers/radeon/r600d_common.h | 5 +++
src/gallium/drivers/radeonsi/si_state.c | 56 +
From: Marek Olšák
---
src/gallium/drivers/r600/evergreen_state.c | 1 +
src/gallium/drivers/r600/r600_shader.c | 55 +++---
src/gallium/drivers/r600/r600_shader.h | 1 +
3 files changed, 53 insertions(+), 4 deletions(-)
diff --git a/src/gallium/drivers/r600/eve
From: Marek Olšák
This fixes piglit/gl-2.0-edgeflag.
Cc: mesa-sta...@lists.freedesktop.org
---
src/mesa/state_tracker/st_atom.c| 3 +--
src/mesa/state_tracker/st_program.c | 4 ++--
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/src/mesa/state_tracker/st_atom.c b/src/mesa/st
From: Marek Olšák
Softpipe expects a float in the vertex shader, which is what glEdgeFlag
generates.
This fixes piglit/gl-2.0-edgeflag.
Cc: mesa-sta...@lists.freedesktop.org
---
src/mesa/main/varray.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/mesa/main/varray.
From: Marek Olšák
r600_translate_colorformat is rewritten to look like radeonsi.
r600_translate_colorswap is shared with radeonsi.
r600_colorformat_endian_swap is consolidated.
This adds some formats which were missing. Future "plain" formats will
automatically be supported.
---
src/gallium/dri
Bruno Jiménez writes:
> This way, we are left with only the preprocessor flags and '-std=X'
> ---
> configure.ac | 9 -
> 1 file changed, 8 insertions(+), 1 deletion(-)
>
Reviewed-by: Francisco Jerez
> diff --git a/configure.ac b/configure.ac
> index 5b86141..2378d00 100644
> --- a/co
Bruno Jiménez writes:
> ---
> src/gallium/state_trackers/clover/Makefile.am | 5 ++---
> 1 file changed, 2 insertions(+), 3 deletions(-)
>
Reviewed-by: Francisco Jerez
> diff --git a/src/gallium/state_trackers/clover/Makefile.am
> b/src/gallium/state_trackers/clover/Makefile.am
> index ece2b
This way, we are left with only the preprocessor flags and '-std=X'
---
configure.ac | 9 -
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index 5b86141..2378d00 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1542,8 +1542,15 @@ strip_unwanted_llv
---
src/gallium/state_trackers/clover/Makefile.am | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/src/gallium/state_trackers/clover/Makefile.am
b/src/gallium/state_trackers/clover/Makefile.am
index ece2b38..75eae86 100644
--- a/src/gallium/state_trackers/clover/Makefile.a
From: Roland Stigge
In the case of powerpc, mesa activates some altivec instructions
that are unknown on the powerpcspe architecture (see
https://wiki.debian.org/PowerPCSPEPort), causing a build failure as the
'vand' opcode is not recognized by the assembler.
This patch fixes this by preventing
https://bugs.freedesktop.org/show_bug.cgi?id=75226
Vladimir Ysikov changed:
What|Removed |Added
CC||granti...@gmail.com
--
You are receiv
Ilia Mirkin writes:
> On Sat, Mar 1, 2014 at 7:35 PM, Francisco Jerez wrote:
>> Bruno Jiménez writes:
>>
>>> Recently, llvm has changed to use c++11, so we also should use it
>>> ---
>>> src/gallium/state_trackers/clover/Makefile.am | 4 ++--
>>> 1 file changed, 2 insertions(+), 2 deletions(-)
---
src/gallium/state_trackers/vdpau/mixer.c | 8
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/gallium/state_trackers/vdpau/mixer.c
b/src/gallium/state_trackers/vdpau/mixer.c
index 996fd8e..e6bfb8c 100644
--- a/src/gallium/state_trackers/vdpau/mixer.c
+++ b/src/galli
The spec incorrectly used void as return type, when it should have
been GLboolean. This has now been fixed. According to Nvidia, their
implementation always used GLboolean.
---
include/GL/glext.h | 2 +-
src/mapi/glapi/gen/NV_vdpau_interop.xml | 1 +
src/mesa/main/vdpau.c
On Sun, 2014-03-02 at 04:26 -0500, Ilia Mirkin wrote:
> On Sat, Mar 1, 2014 at 7:35 PM, Francisco Jerez wrote:
> > Bruno Jiménez writes:
> >
> >> Recently, llvm has changed to use c++11, so we also should use it
> >> ---
> >> src/gallium/state_trackers/clover/Makefile.am | 4 ++--
> >> 1 file ch
On Sat, Mar 1, 2014 at 7:35 PM, Francisco Jerez wrote:
> Bruno Jiménez writes:
>
>> Recently, llvm has changed to use c++11, so we also should use it
>> ---
>> src/gallium/state_trackers/clover/Makefile.am | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/src/galliu
Will land this + the sampler key width change since they fix real
bugs, and then follow up with a new series to improve performance.
On Sun, Feb 23, 2014 at 9:25 AM, Kenneth Graunke wrote:
> On 02/21/2014 09:09 PM, Chris Forbes wrote:
>> BRW_MAX_TEX_UNIT is the static limit on the number of textu
21 matches
Mail list logo