Re: [Mesa-dev] [PATCH 2/3] egl_dri2: add support for Android

2011-08-26 Thread Chia-I Wu
On Fri, Aug 26, 2011 at 12:55 PM, Chad Versace c...@chad-versace.us wrote: [CC'ing krh because I learned much of this from him, so may have some insight to share with us.] On 08/25/2011 08:14 PM, Chia-I Wu wrote: On Fri, Aug 26, 2011 at 4:09 AM, Chad Versace c...@chad-versace.us wrote: On

Re: [Mesa-dev] [PATCH 2/3] egl_dri2: add support for Android

2011-08-26 Thread Chia-I Wu
On Fri, Aug 26, 2011 at 2:05 PM, Chia-I Wu olva...@gmail.com wrote: On Fri, Aug 26, 2011 at 12:55 PM, Chad Versace c...@chad-versace.us wrote: [CC'ing krh because I learned much of this from him, so may have some insight to share with us.] On 08/25/2011 08:14 PM, Chia-I Wu wrote: On Fri, Aug

Re: [Mesa-dev] About the current EGL GLES 1.x implementation

2011-08-26 Thread Ilyes Gouta
Thanks a lot Chia-l, In general, do you guys keep a matrix (per driver, mesa version), where supported and unsupported features are listed? Also, is there a reference renderer in mesa that I can toggle on at runtime (such as using an env. variable) so that I can compare with the hardware

[Mesa-dev] [PATCH 1/4] mklib: Add support for -whole-archive/-no-whole-archive.

2011-08-26 Thread Christopher James Halse Rogers
This is useful for building convenience libraries before combining them into shared libraries, like dricore Signed-off-by: Christopher James Halse Rogers christopher.halse.rog...@canonical.com --- bin/mklib | 32 1 files changed, 32 insertions(+), 0

[Mesa-dev] [PATCH 0/4] Miscelaneous buildsystem patches

2011-08-26 Thread Christopher James Halse Rogers
Eric was wondering why the --enable-shared-dricore option also built libglsl.so. This provided the activation energy to fix it, and also extend dricore to the gallium drivers. ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org

[Mesa-dev] [PATCH 4/4] build: Fix harmless warning when building libdricore.so

2011-08-26 Thread Christopher James Halse Rogers
Fixes warning: mv: `../../lib/libdricore.so' and `../../lib/libdricore.so' are the same file Signed-off-by: Christopher James Halse Rogers christopher.halse.rog...@canonical.com --- src/mesa/Makefile |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/Makefile

[Mesa-dev] [PATCH 2/4] build: Use new -whole-archive support to fold libglsl.so into libdricore.so

2011-08-26 Thread Christopher James Halse Rogers
Signed-off-by: Christopher James Halse Rogers christopher.halse.rog...@canonical.com --- configs/autoconf.in |2 +- configure.ac | 10 -- src/glsl/Makefile|9 +++-- src/mesa/Makefile|3 ++- src/mesa/sources.mak |2 ++ 5 files changed, 12

[Mesa-dev] [PATCH 3/4] build: Factor out common gallium code into libgallium.so mirroring libdricore.

2011-08-26 Thread Christopher James Halse Rogers
This is enabled iff libdricore is enabled. Signed-off-by: Christopher James Halse Rogers christopher.halse.rog...@canonical.com --- This could also be folded into libdricore, if that's considered more appropriate. configs/autoconf.in |3 +++ configure.ac

Re: [Mesa-dev] About the current EGL GLES 1.x implementation

2011-08-26 Thread Chia-I Wu
On Fri, Aug 26, 2011 at 3:52 PM, Ilyes Gouta ilyes.go...@gmail.com wrote: Thanks a lot Chia-l, In general, do you guys keep a matrix (per driver, mesa version), where supported and unsupported features are listed? Some of the driver developers do, but I am not sure if they have GLESv1 covered.

[Mesa-dev] [PATCH] gallium/tgsi: add offset to TXF

2011-08-26 Thread Dave Airlie
From: Dave Airlie airl...@redhat.com In order to implement the GLSL texelFetchOffset I needed to modify TXF (which wasn't defined anyways). It now corresponds to the NV_gpu_shader4. I've limited things to a u8, since hw can only do about 4-5 bits, since that is what DX specifies, TGSI passes

Re: [Mesa-dev] About the current EGL GLES 1.x implementation

2011-08-26 Thread Alex Deucher
On Fri, Aug 26, 2011 at 4:11 AM, Chia-I Wu olva...@gmail.com wrote: On Fri, Aug 26, 2011 at 3:52 PM, Ilyes Gouta ilyes.go...@gmail.com wrote: Thanks a lot Chia-l, In general, do you guys keep a matrix (per driver, mesa version), where supported and unsupported features are listed? Some of

Re: [Mesa-dev] DEATH to old drivers!

2011-08-26 Thread Kristian Høgsberg
On Fri, Aug 26, 2011 at 4:52 AM, matthew green m...@eterna.com.au wrote: hi folks,  - Remove all DRI1 drivers: i810, mach64, mga, r128, savage, sis, tdfx, and unichrome. over in netbsd land we're still lagging on DRI2 support[*].  of the above cards, i've hard successful reports on mach64,

Re: [Mesa-dev] DEATH to old drivers!

2011-08-26 Thread Alex Deucher
2011/8/26 Kristian Høgsberg k...@bitplanet.net: On Fri, Aug 26, 2011 at 4:52 AM, matthew green m...@eterna.com.au wrote: hi folks,  - Remove all DRI1 drivers: i810, mach64, mga, r128, savage, sis, tdfx, and unichrome. over in netbsd land we're still lagging on DRI2 support[*].  of the

Re: [Mesa-dev] [PATCH] gallium/tgsi: add offset to TXF

2011-08-26 Thread Brian Paul
On 08/26/2011 04:50 AM, Dave Airlie wrote: From: Dave Airlieairl...@redhat.com In order to implement the GLSL texelFetchOffset I needed to modify TXF (which wasn't defined anyways). It now corresponds to the NV_gpu_shader4. I've limited things to a u8, since hw can only do about 4-5 bits,

Re: [Mesa-dev] [PATCH 05/12] r300g: share the source list

2011-08-26 Thread Tom Stellard
On Thu, 2011-08-25 at 22:28 -0400, Chia-I Wu wrote: On Fri, Aug 26, 2011 at 5:29 AM, Tom Stellard thomas.stell...@amd.com wrote: On Thu, 2011-08-25 at 00:55 -0400, Chia-I Wu wrote: From: Chia-I Wu o...@lunarg.com --- src/gallium/drivers/r300/Makefile | 63

Re: [Mesa-dev] DEATH to old drivers!

2011-08-26 Thread Alan Coopersmith
On 08/26/11 01:52, matthew green wrote: [*] keeping up with DRM in linux is hard work. you guys are very active. Absolutely agreed there, but the only working DRM module we ship at the moment is a KMS/DRI2 version of i915, so I have no objections to losing the Mesa support for the DRI1 modules

Re: [Mesa-dev] [PATCH 05/12] r300g: share the source list

2011-08-26 Thread Chia-I Wu
On Fri, Aug 26, 2011 at 10:52 PM, Chia-I Wu olva...@gmail.com wrote: [snip] I don't really have a lot of insight into how the Android build system works, but those files were originally added so that r300_dri.so would link correctly for Gallium targets that didn't use GLSL, because without

Re: [Mesa-dev] About the current EGL GLES 1.x implementation

2011-08-26 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/26/2011 05:37 AM, Alex Deucher wrote: On Fri, Aug 26, 2011 at 4:11 AM, Chia-I Wu olva...@gmail.com wrote: On Fri, Aug 26, 2011 at 3:52 PM, Ilyes Gouta ilyes.go...@gmail.com wrote: Thanks a lot Chia-l, In general, do you guys keep a matrix

Re: [Mesa-dev] [PATCH 2/3] egl_dri2: add support for Android

2011-08-26 Thread Chia-I Wu
On Fri, Aug 26, 2011 at 8:36 PM, Kristensen, Kristian H kristian.h.kristen...@intel.com wrote: [snip] There is no pixmap in Android so it can be ignored.  As for pbuffers, which I plan to support as a follow-on commit, it works pretty much the same as the windows except that the back buffer is

Re: [Mesa-dev] [PATCH] pp: initialize the sample mask

2011-08-26 Thread Christoph Bumiller
On 26.08.2011 17:37, Lauri Kasanen wrote: On Fri, 26 Aug 2011 17:21:02 +0200 Christoph Bumiller e0425...@student.tuwien.ac.at wrote: We cannot rely on pipe drivers to default to non-zero. Fixes pp being a no-op on nv50. Reviewed-by: Lauri Kasanen c...@gmx.com Appears to be a no-op on

[Mesa-dev] [Bug 40397] New: vmwgfx 3D Glitchy

2011-08-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40397 Summary: vmwgfx 3D Glitchy Product: Mesa Version: 7.11 Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium

[Mesa-dev] [Bug 40397] vmwgfx 3D Glitchy

2011-08-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40397 José Fonseca jfons...@vmware.com changed: What|Removed |Added CC||bri...@vmware.com,

[Mesa-dev] TGSI texture offset handling

2011-08-26 Thread Dave Airlie
I've involuntarily started looking into this when I tried to add TXF support, so we need to expand TGSI to add support for texture offsets. Requirements: the extreme requirement so far is for textureGatherOffsets which can accept 4 x ivec2, the normal textureFetchOffset can accept an ivec3. The

Re: [Mesa-dev] [PATCH 2/3] egl_dri2: add support for Android

2011-08-26 Thread Chad Versace
On 08/25/2011 11:19 PM, Chia-I Wu wrote: On Fri, Aug 26, 2011 at 2:05 PM, Chia-I Wu olva...@gmail.com wrote: On Fri, Aug 26, 2011 at 12:55 PM, Chad Versace c...@chad-versace.us wrote: [CC'ing krh because I learned much of this from him, so may have some insight to share with us.] On

Re: [Mesa-dev] OpenGL to DirectX with Mesa3D

2011-08-26 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/25/2011 10:55 AM, Anonimo Veneziano wrote: Hi all I am a programmer but not very skilled in 3D graphics (so pardon me if I write something wrong). I need to build my own opengl32.dll to redirect my OpenGL application calls to DirectX

Re: [Mesa-dev] DEATH to old drivers!

2011-08-26 Thread Marek Olšák
On Thu, Aug 25, 2011 at 1:46 AM, Ian Romanick i...@freedesktop.org wrote: I've put up an initial branch at        git://people.freedesktop.org:~idr/mesa kill-old-drivers Acked-by: Marek Olšák mar...@gmail.com ___ mesa-dev mailing list

Re: [Mesa-dev] DEATH to old drivers!

2011-08-26 Thread Kristian Høgsberg
On Wed, Aug 24, 2011 at 7:46 PM, Ian Romanick i...@freedesktop.org wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/24/2011 12:11 PM, Ian Romanick wrote: I'd like to propose giving the ax to a bunch of old, unmaintained drivers.  I've been doing a bunch of refactoring and reworking

[Mesa-dev] [Bug 40401] New: Cogs is slow

2011-08-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40401 Summary: Cogs is slow Product: Mesa Version: git Platform: Other OS/Version: All Status: NEW Keywords: patch Severity: normal Priority: medium

Re: [Mesa-dev] [PATCH] glsl: Fail linking if a global is both a uniform and non-uniform.

2011-08-26 Thread Kenneth Graunke
On 08/25/2011 01:30 PM, Chad Versace wrote: We weren't catching this? Embarrassing. Reviewed-by: Chad Versace c...@chad-versace.us We may also want to emit an error when a variable is declared as 'in' a VS and as 'out' in a FS. But I'm not sure that's actually illegal. Ian mentioned the

[Mesa-dev] [Bug 40401] Cogs is slow

2011-08-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40401 Sven Arvidsson s...@whiz.se changed: What|Removed |Added CC||s...@whiz.se -- Configure

Re: [Mesa-dev] TGSI texture offset handling

2011-08-26 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/26/2011 09:26 AM, Dave Airlie wrote: I've involuntarily started looking into this when I tried to add TXF support, so we need to expand TGSI to add support for texture offsets. Requirements: the extreme requirement so far is for

[Mesa-dev] [PATCH] mapi: Silence many warning: unused parameter

2011-08-26 Thread Ian Romanick
From: Ian Romanick ian.d.roman...@intel.com When generating dispatch templates, emit the '(void) blah;' magic to make GCC happy. This reduces a lot of warning spam if you build with -Wunused-parameter or -Wextra. Cc: Chia-I Wu o...@lunarg.com --- There's a follow-on patch that commits the

Re: [Mesa-dev] About the current EGL GLES 1.x implementation

2011-08-26 Thread Ilyes Gouta
Thank you guys for the information! -Ilyes On Fri, Aug 26, 2011 at 4:36 PM, Ian Romanick i...@freedesktop.org wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/26/2011 05:37 AM, Alex Deucher wrote: On Fri, Aug 26, 2011 at 4:11 AM, Chia-I Wu olva...@gmail.com wrote: On Fri, Aug 26,

Re: [Mesa-dev] TGSI texture offset handling

2011-08-26 Thread Christoph Bumiller
On 26.08.2011 20:57, Ian Romanick wrote: On 08/26/2011 09:26 AM, Dave Airlie wrote: I've involuntarily started looking into this when I tried to add TXF support, so we need to expand TGSI to add support for texture offsets. Requirements: the extreme requirement so far is for

[Mesa-dev] [Bug 40397] vmwgfx 3D Glitchy

2011-08-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40397 --- Comment #1 from Thomas Hellström thellst...@vmware.com 2011-08-26 12:27:29 PDT --- Running vmwgfx with the xorg state tracker is obsolete. Please instead enable and install the xa state tracker and use the vmwgfx branch of

Re: [Mesa-dev] About the current EGL GLES 1.x implementation

2011-08-26 Thread Emil Velikov
On Fri, 26 Aug 2011 16:36:50 +0100, Ian Romanick i...@freedesktop.org wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/26/2011 05:37 AM, Alex Deucher wrote: On Fri, Aug 26, 2011 at 4:11 AM, Chia-I Wu olva...@gmail.com wrote: On Fri, Aug 26, 2011 at 3:52 PM, Ilyes Gouta

Re: [Mesa-dev] [PATCH] docs: Add a page on post-processing

2011-08-26 Thread Brian Paul
On 08/25/2011 02:26 PM, Lauri Kasanen wrote: From a12122cf8bec360c03518e686f5fdae0c9cbf791 Mon Sep 17 00:00:00 2001 From: Lauri Kasanenc...@gmx.com Date: Thu, 25 Aug 2011 23:23:08 +0300 Subject: [PATCH] docs: Add a page on post-processing Signed-off-by: Lauri Kasanenc...@gmx.com Thanks.

Re: [Mesa-dev] About the current EGL GLES 1.x implementation

2011-08-26 Thread Ilyes Gouta
Hi Emil, Would it be possible to get into details such as telling if a particular glBlendFunc() or a certain GL_TEXTURE_ENV_MODE, GL_COMBINE_RGB flags are h/w accelerated and so on (per driver)? This is for fixed pipelines. How is it best to represent such details? Would be fun to implement a

Re: [Mesa-dev] About the current EGL GLES 1.x implementation

2011-08-26 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 08/26/2011 01:00 PM, Emil Velikov wrote: On Fri, 26 Aug 2011 16:36:50 +0100, Ian Romanick i...@freedesktop.org wrote: On 08/26/2011 05:37 AM, Alex Deucher wrote: On Fri, Aug 26, 2011 at 4:11 AM, Chia-I Wu olva...@gmail.com wrote: On Fri, Aug

Re: [Mesa-dev] g3dvl odds ends

2011-08-26 Thread Younes Manton
On Fri, Aug 26, 2011 at 4:31 PM, Brian Paul bri...@vmware.com wrote: Two things that should probably be fixed in the src/gallium/auxiliary/vl/ code: 1. The copyright statements refer to Tungsten Graphics.  That's probably a copy paste error.  s/Tungsten Graphics/the authors/ or thereabouts.

Re: [Mesa-dev] OpenGL to DirectX with Mesa3D

2011-08-26 Thread Corbin Simpson
Use ANGLE. It's there, it works well enough that Fx and Chromium are both using it, and it'll do what you want. ...I kinda wish you didn't need it, but sadly, OGL on Win32 sucks a lot. ~ C. On Fri, Aug 26, 2011 at 10:13 AM, Ian Romanick i...@freedesktop.org wrote: -BEGIN PGP SIGNED

Re: [Mesa-dev] g3dvl odds ends

2011-08-26 Thread Matt Turner
On Fri, Aug 26, 2011 at 5:54 PM, Zack Rusin za...@vmware.com wrote: On Friday, August 26, 2011 05:12:52 PM Younes Manton wrote: On Fri, Aug 26, 2011 at 4:31 PM, Brian Paul bri...@vmware.com wrote: Two things that should probably be fixed in the src/gallium/auxiliary/vl/ code: 1. The

[Mesa-dev] [Bug 40401] Cogs is slow

2011-08-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40401 --- Comment #1 from Vadim pt...@yandex.ru 2011-08-26 17:35:22 PDT --- (In reply to comment #0) The game Cogs is very slow with the r300g (and r600g) driver. This was originally mentioned in bug 39572, however that bug was about different

Re: [Mesa-dev] g3dvl odds ends

2011-08-26 Thread Younes Manton
On Fri, Aug 26, 2011 at 5:54 PM, Zack Rusin za...@vmware.com wrote: On Friday, August 26, 2011 05:12:52 PM Younes Manton wrote: On Fri, Aug 26, 2011 at 4:31 PM, Brian Paul bri...@vmware.com wrote: Two things that should probably be fixed in the src/gallium/auxiliary/vl/ code: 1. The

[Mesa-dev] [PATCH 0/8] i965, mesa: Build libmesa_dricore and i965_dri for Android

2011-08-26 Thread Chad Versace
This series builds libmesa_dricore.so and i965_dri.so for Android. Along the way, a few cleanups are necessary. This just gets the driver to build. I have not tested it yet. Chad Versace (8): android: Remove -fvisibility=hidden from CFLAGS so that we can build a shared dricore mesa:

[Mesa-dev] [PATCH 1/8] android: Remove -fvisibility=hidden from CFLAGS so that we can build a shared dricore

2011-08-26 Thread Chad Versace
If you attempt to link together libmesa_dricore.so from object files built with visibility=hidden, then the library is useless. It exposes no symbols. Signed-off-by: Chad Versace c...@chad-versace.us --- Android.common.mk |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git

[Mesa-dev] [PATCH 3/8] make: Document imported variables

2011-08-26 Thread Chad Versace
In src/mesa/Android.mk, it is non-trivial to determine which variables are imported by `include sources.mak`. So document them. Signed-off-by: Chad Versace c...@chad-versace.us --- src/mesa/Android.mk |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git

[Mesa-dev] [PATCH 2/8] mesa: Build libmesa_dricore.so for Android

2011-08-26 Thread Chad Versace
libmesa_dricore is analogous to the libdricore built by the Autoconf build. Signed-off-by: Chad Versace c...@chad-versace.us --- src/mesa/Android.mk | 35 +++ 1 files changed, 35 insertions(+), 0 deletions(-) diff --git a/src/mesa/Android.mk

[Mesa-dev] [PATCH 5/8] make: Factor out source lists from drivers/dri/common into Makefile.sources

2011-08-26 Thread Chad Versace
In order that the autoconf and Android build can share the same source lists, move the lists from src/mesa/drivers/dri/Makefile.defines into src/mesa/drivers/dri/common/Makefile.sources I would like for Android to just reuse Makefile.defines, but the file is unsuitable for Android.

[Mesa-dev] [PATCH 4/8] make: Remove duplicate occurence of driverfuncs.c

2011-08-26 Thread Chad Versace
Stop building driverfuncs.c twice for each DRI driver. driverfuncs.c is included in both libmesa.a and in src/mesa/drivers/dri/Makefiles.defines:COMMON_SOURCES, so remove it from COMMON_SOURCES. Signed-off-by: Chad Versace c...@chad-versace.us --- src/mesa/drivers/dri/Makefile.defines |1 -

[Mesa-dev] [PATCH 7/8] i965: Fix Android build by removing relative includes

2011-08-26 Thread Chad Versace
Add $(TOP)/src/mesa to include paths and replace each occurence of #include ../glsl/*.h with #include glsl/*.h Signed-off-by: Chad Versace c...@chad-versace.us --- src/mesa/drivers/dri/i965/Makefile |1 + src/mesa/drivers/dri/i965/brw_clip.c |2 +-

[Mesa-dev] [PATCH 6/8] dri: Build libmesa_dri_common for Android

2011-08-26 Thread Chad Versace
libmesa_dri_common is a static library that contains the sources in src/mesa/drivers/dri/common. Each DRI driver should link to it. Signed-off-by: Chad Versace c...@chad-versace.us --- Android.mk |1 + src/mesa/drivers/dri/common/Android.mk | 49

[Mesa-dev] [PATCH 8/8] i965: Build i965_dri.so for Android

2011-08-26 Thread Chad Versace
This just gets the driver to build. I have not yet tested if the driver actually works. Signed-off-by: Chad Versace c...@chad-versace.us --- Android.mk |3 +- src/mesa/drivers/dri/Android.mk | 61 ++

[Mesa-dev] [PATCH] mesa, glsl_to_tgsi: fixes for native integers

2011-08-26 Thread Bryan Cain
This fixes all of the piglit regressions in softpipe when native integers are enabled. --- src/mesa/main/uniforms.c |8 + src/mesa/state_tracker/st_glsl_to_tgsi.cpp | 45 ++-- 2 files changed, 43 insertions(+), 10 deletions(-) diff --git

[Mesa-dev] [Bug 40397] vmwgfx 3D Glitchy

2011-08-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40397 Michael Zhou zhoumichaely+freedesk...@gmail.com changed: What|Removed |Added Status|NEW

Re: [Mesa-dev] [PATCH] mapi: Silence many warning: unused parameter

2011-08-26 Thread Chia-I Wu
On Sat, Aug 27, 2011 at 3:12 AM, Ian Romanick i...@freedesktop.org wrote: From: Ian Romanick ian.d.roman...@intel.com When generating dispatch templates, emit the '(void) blah;' magic to make GCC happy.  This reduces a lot of warning spam if you build with -Wunused-parameter or -Wextra. It

Re: [Mesa-dev] [PATCH 1/8] android: Remove -fvisibility=hidden from CFLAGS so that we can build a shared dricore

2011-08-26 Thread Chia-I Wu
On Sat, Aug 27, 2011 at 9:53 AM, Chad Versace c...@chad-versace.us wrote: If you attempt to link together libmesa_dricore.so from object files built with visibility=hidden, then the library is useless. It exposes no symbols. Signed-off-by: Chad Versace c...@chad-versace.us ---  

Re: [Mesa-dev] [PATCH 6/8] dri: Build libmesa_dri_common for Android

2011-08-26 Thread Chia-I Wu
On Sat, Aug 27, 2011 at 9:54 AM, Chad Versace c...@chad-versace.us wrote: libmesa_dri_common is a static library that contains the sources in src/mesa/drivers/dri/common. Each DRI driver should link to it. Signed-off-by: Chad Versace c...@chad-versace.us ---  Android.mk                      

Re: [Mesa-dev] [PATCH 8/8] i965: Build i965_dri.so for Android

2011-08-26 Thread Chia-I Wu
On Sat, Aug 27, 2011 at 9:54 AM, Chad Versace c...@chad-versace.us wrote: This just gets the driver to build. I have not yet tested if the driver actually works. Signed-off-by: Chad Versace c...@chad-versace.us ---  Android.mk                           |    3 +-