[Mesa-dev] [PATCH] progs/egl: Add an OpenGL ES 2.0 demo for EGL_OES_image_pixmap.

2011-07-19 Thread Shuang He
This is based on opengles1/texture_from_pixmap.c --- src/egl/opengles2/Makefile.am |4 +- src/egl/opengles2/texture_from_pixmap.c | 653 +++ 2 files changed, 656 insertions(+), 1 deletions(-) create mode 100644 src/egl/opengles2/texture_from_pixmap.c di

[Mesa-dev] [PATCH] i965: fix timer query on gen6+

2011-07-19 Thread Zou Nan hai
on gen6+, render engine PIPE_CONTROL reported time stamp is a 64 bits value (high 32 bits MBZ on snb), toggles every 80 ns. Signed-off-by: Zou Nan hai --- src/mesa/drivers/dri/i965/brw_queryobj.c | 17 - 1 files changed, 12 insertions(+), 5 deletions(-) diff --git a/sr

[Mesa-dev] [Bug 36384] configure tips (last TODO: rename swrastg to swrast)

2011-07-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36384 Fabio Pedretti changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Mesa-dev] [Bug 38716] Can't build, error: undefined reference to `_eglFilterConfigArray'

2011-07-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38716 --- Comment #13 from Chia-I Wu 2011-07-19 02:27:58 PDT --- (In reply to comment #12) > (In reply to comment #1) > > The command for linking wrongly put the local library search path after the > > system's. It should be fixed with 24137af. Pleas

[Mesa-dev] [Bug 39219] libgl conflict with xbmc causes lock up on xbmc exit

2011-07-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39219 Henri Verbeet changed: What|Removed |Added Attachment #49135|0 |1 is obsolete|

[Mesa-dev] [Bug 39219] libgl conflict with xbmc causes lock up on xbmc exit

2011-07-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39219 --- Comment #6 from freewindri...@rocketmail.com 2011-07-19 04:55:29 PDT --- new patch works on i686 Arch Linux (2.6.39.3) -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --

[Mesa-dev] [PATCH] gallium/auxiliary and llvmpipe: fix build with LLVM 3.0svn

2011-07-19 Thread Tobias Droste
LLVM 3.0svn introduced a new type system. It defines a new way to create named structs and removes the (now not needed) LLVMInvalidateStructLayout function. see revision 134829 of LLVM Only compile tested, please review and test! Signed-off-by: Tobias Droste --- src/gallium/auxiliary/draw/draw

Re: [Mesa-dev] [Intel-gfx] [PATCH] dri: Do not tile stencil buffer

2011-07-19 Thread Paul Menzel
Am Montag, den 18.07.2011, 00:55 -0700 schrieb Chad Versace: > Until now, the stencil buffer was allocated as a Y tiled buffer, because > in several locations the PRM states that it is. However, it is actually > W tiled. From the PRM, 2011 Sandy Bridge, Volume 1, Part 2, Section > 4.5.2.1 W-Major F

Re: [Mesa-dev] [Intel-gfx] [PATCH] intel: Fix stencil buffer to be W tiled

2011-07-19 Thread Paul Menzel
Am Montag, den 18.07.2011, 00:55 -0700 schrieb Chad Versace: […] > diff --git a/src/mesa/drivers/dri/intel/intel_span.c > b/src/mesa/drivers/dri/intel/intel_span.c > index 153803f..d306432 100644 > --- a/src/mesa/drivers/dri/intel/intel_span.c > +++ b/src/mesa/drivers/dri/intel/intel_span.c > @@

[Mesa-dev] Using Gallium on an embedded system

2011-07-19 Thread Marcus Comstedt
Hi folks. I wonder if there is someone here who can help me wrap my brain around the code flow for getting Mesa to render with Gallium. I have an embedded system with a GPU supported by a gallium driver. I'd like to have Mesa running with hardware acceleration (OSMesa with software rendering alr

[Mesa-dev] [Bug 38716] Can't build, error: undefined reference to `_eglFilterConfigArray'

2011-07-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38716 --- Comment #14 from Jos van Wolput 2011-07-19 06:22:10 PDT --- (In reply to comment #13) > libEGL.so is missing. Could you switch to src/egl/main/ and "make" from that > directory? > Switching to .../mesa/src/egl/main, "make" now properly bu

Re: [Mesa-dev] Using Gallium on an embedded system

2011-07-19 Thread Brian Paul
On Tue, Jul 19, 2011 at 3:42 AM, Marcus Comstedt wrote: > > Hi folks. > > I wonder if there is someone here who can help me wrap my brain around > the code flow for getting Mesa to render with Gallium. > > I have an embedded system with a GPU supported by a gallium driver. > I'd like to have Mesa

Re: [Mesa-dev] Using Gallium on an embedded system

2011-07-19 Thread Brian Paul
On Tue, Jul 19, 2011 at 8:02 AM, Marcus Comstedt wrote: > > Hi Brian. > > Thanks for your reply. > > > Brian Paul writes: > >> The app would call eglCreateContext() or glXCreateContext() or >> similar. > > It certainly wouldn't call glXCreateContext(), because there is no X. > I'm making my own W

Re: [Mesa-dev] [PATCH] gallium/auxiliary and llvmpipe: fix build with LLVM 3.0svn

2011-07-19 Thread Brian Paul
On Sat, Jul 16, 2011 at 11:40 AM, Tobias Droste wrote: > LLVM 3.0svn introduced a new type system. It defines a new way to create > named structs and removes the (now not needed) LLVMInvalidateStructLayout > function. > > see revision 134829 of LLVM > > Only compile tested, please review and test!

Re: [Mesa-dev] Using Gallium on an embedded system

2011-07-19 Thread Marcus Comstedt
Hi Brian. Thanks for your reply. Brian Paul writes: > The app would call eglCreateContext() or glXCreateContext() or > similar. It certainly wouldn't call glXCreateContext(), because there is no X. I'm making my own Winsys, remember? :-) I'm not sure what egl is or whether it would help in

Re: [Mesa-dev] Using Gallium on an embedded system

2011-07-19 Thread Marcus Comstedt
Hi Brian. Brian Paul writes: > Above all this is the GL/window system API. Examples include GLX, WGL > and EGL. These interface provide functions for creating rendering > contexts, binding them to drawing surfaces, etc. If you're not > familiar with these you should probably read up on EGL.

[Mesa-dev] [Bug 39375] New: mesa-7.11_rc1 weird colors and aliasing

2011-07-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39375 Summary: mesa-7.11_rc1 weird colors and aliasing Product: Mesa Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: critical Priority

[Mesa-dev] [Bug 39375] mesa-7.11_rc1 weird colors and aliasing (nouveau driver)

2011-07-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39375 Patrizio Bassi changed: What|Removed |Added Summary|mesa-7.11_rc1 weird colors |mesa-7.11_rc1 weird colors

[Mesa-dev] [Bug 39375] mesa-7.11_rc1 weird colors and aliasing (nouveau driver)

2011-07-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39375 Chi-Thanh Christopher Nguyen changed: What|Removed |Added Component|Mesa core |Drivers/DRI/nouveau

Re: [Mesa-dev] Mesa 7.11 Release Candidate 1 tarball issue

2011-07-19 Thread Brian Paul
On Mon, Jul 18, 2011 at 8:05 AM, Brian Paul wrote: > On 07/17/2011 03:50 PM, Marty Jack wrote: >> >> Another problem in the RC1 tarballs appears to be src/mesa/depend.  This >> contains a pile of references to >> /usr/lib/gcc/x86_64-redhat-linux/4.6.0/include and will fail if you are not >> on tha

[Mesa-dev] [PATCH] mesa: remove depend files from tarballs

2011-07-19 Thread Brian Paul
--- Makefile | 24 1 files changed, 4 insertions(+), 20 deletions(-) diff --git a/Makefile b/Makefile index abdeb79..864ee5f 100644 --- a/Makefile +++ b/Makefile @@ -253,7 +253,6 @@ MAIN_FILES = \ $(DIRECTORY)/src/mesa/descrip.mms \

Re: [Mesa-dev] [Nouveau] RFC: ctx->Driver.Map/UnmapTextureImage() hooks

2011-07-19 Thread Francisco Jerez
Pekka Paalanen writes: > On Mon, 18 Jul 2011 08:09:17 -0600 > Brian Paul wrote: > >> On 07/15/2011 02:59 PM, Pekka Paalanen wrote: >> > On Fri, 15 Jul 2011 12:22:41 -0600 >> > Brian Paul wrote: >> > >> >> On 07/15/2011 10:07 AM, Dave Airlie wrote: >> >>> On Fri, Jul 15, 2011 at 4:10 AM, Brian >

Re: [Mesa-dev] [PATCH] intel: Fix stencil buffer to be W tiled

2011-07-19 Thread Eric Anholt
On Mon, 18 Jul 2011 17:00:54 -0700, Chad Versace wrote: > On 07/18/2011 08:57 AM, Eric Anholt wrote: > > On Mon, 18 Jul 2011 00:55:03 -0700, Chad Versace > > wrote: > >> diff --git a/src/mesa/drivers/dri/intel/intel_fbo.c > >> b/src/mesa/drivers/dri/intel/intel_fbo.c > >> index 1669af2..507cc33

Re: [Mesa-dev] [PATCH 1/2] meta: Add a GLSL-based _mesa_meta_Clear() variant.

2011-07-19 Thread Eric Anholt
On Mon, 18 Jul 2011 12:47:26 -0600, Brian Paul wrote: > On 07/18/2011 10:33 AM, Eric Anholt wrote: > > This cuts out a large portion of the overhead of glClear() from > > resetting the texenv state and recomputing the fixed function > > programs. It also means less use of fixed function internall

Re: [Mesa-dev] [Nouveau] RFC: ctx->Driver.Map/UnmapTextureImage() hooks

2011-07-19 Thread Matt Turner
On Tue, Jul 19, 2011 at 11:12 AM, Francisco Jerez wrote: > (isn't fixing up the drivers the > responsibility of whoever changes the API?) That's exactly why removing old drivers is being discussed. Matt ___ mesa-dev mailing list mesa-dev@lists.freedesk

[Mesa-dev] [Bug 39338] Mesa: LLVM dependency mishmash

2011-07-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39338 Johannes Obermayr changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

[Mesa-dev] rationale for GLubyte pointers for strings?

2011-07-19 Thread tom fogal
Hi all, This isn't quite the right place for this question, but I've searched through old standards and googled without any luck, so hopefully somebody here knows the history behind GLubyte*. glGetString and gluErrorString, plus maybe some other functions, return GLubyte pointers instead of simpl

Re: [Mesa-dev] rationale for GLubyte pointers for strings?

2011-07-19 Thread Allen Akin
On Tue, Jul 19, 2011 at 12:20:54PM -0600, tom fogal wrote: | glGetString and gluErrorString, plus maybe some other functions, return | GLubyte pointers instead of simply character pointers... | What's the rationale here? I agree, it's odd. I don't remember the rationale, but my best guess is that

Re: [Mesa-dev] [PATCH] st/mesa: fix the texture format in st_context_teximage

2011-07-19 Thread Stéphane Marchesin
On Mon, Jul 18, 2011 at 07:31, Fredrik Höglund wrote: > Commit 1a339b6c71ebab6e1a64f05b2e133022d3bbcd15 made > st_ChooseTextureFormat map GL_RGBA with type GL_UNSIGNED_BYTE > to PIPE_FORMAT_A8B8G8R8_UNORM. > > The image format for ARGB pixmaps is PIPE_FORMAT_B8G8R8A8_UNORM > however. This mismatc

Re: [Mesa-dev] rationale for GLubyte pointers for strings?

2011-07-19 Thread Patrick Baggett
SGI invented OpenGL and offered it first on their IRIX platform. SGI's MIPSpro compiler has the "char" datatype as unsigned by default, so the compiler would likely complain if assigning a GLbyte pointer to an [unsigned] character pointer. Thus, to do something like char* ext = glGetString(GL_VEND

Re: [Mesa-dev] rationale for GLubyte pointers for strings?

2011-07-19 Thread tom fogal
I think you have misinterpreted my question. Why not just have glGetString's prototype be: const char* glGetString(GLenum); ? Then (sans the missing const :), your code below would work on *all* platforms, MIPSpro or not, with or without a cast. -tom Patrick Baggett writes: > SGI invented O

Re: [Mesa-dev] rationale for GLubyte pointers for strings?

2011-07-19 Thread Henri Verbeet
On 19 July 2011 21:39, tom fogal wrote: > I think you have misinterpreted my question. > > Why not just have glGetString's prototype be: > >  const char* glGetString(GLenum); > > ? Then (sans the missing const :), your code below would work on *all* > platforms, MIPSpro or not, with or without a c

Re: [Mesa-dev] [Intel-gfx] [PATCH] intel: Fix stencil buffer to be W tiled

2011-07-19 Thread Chad Versace
On 07/18/2011 01:20 AM, Paul Menzel wrote: > Am Montag, den 18.07.2011, 00:55 -0700 schrieb Chad Versace: > There are alignment/white space issues above. > >> + unsigned stride = irb->region->pitch;\ >> + unsigned height = 2 * irb->region->height;

Re: [Mesa-dev] [PATCH 3/4] glsl: Create a standalone executable for testing optimization passes.

2011-07-19 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07/08/2011 03:30 PM, Paul Berry wrote: > This patch adds a new build artifact, glsl_test, which can be used for > testing optimization passes in isolation. > > I'm hoping that we will be able to add other useful standalone tests > to this executabl

Re: [Mesa-dev] [PATCH 1/4] mesa: Add an ifndef guard around the definition of the INLINE macro

2011-07-19 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07/18/2011 02:28 PM, Paul Berry wrote: > On 18 July 2011 11:58, Brian Paul wrote: >> On 07/18/2011 12:37 PM, Paul Berry wrote: >>> >>> Several headers redundantly define the INLINE macro. Adding this >>> guard prevents the compiler from complainin

Re: [Mesa-dev] [PATCH] mesa: remove depend files from tarballs

2011-07-19 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07/19/2011 08:29 AM, Brian Paul wrote: Won't this add an extra dependency (on makedepend) in the tarballs? I thought that was the reason for including the empty depend files in the first place. Right? > --- > Makefile | 24 ---

Re: [Mesa-dev] [PATCH 1/2] meta: Add a GLSL-based _mesa_meta_Clear() variant.

2011-07-19 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07/18/2011 09:33 AM, Eric Anholt wrote: > This cuts out a large portion of the overhead of glClear() from > resetting the texenv state and recomputing the fixed function > programs. It also means less use of fixed function internally in our > GLES2

Re: [Mesa-dev] [PATCH 2/2] intel: Use the GLSL-based meta clear when available.

2011-07-19 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07/18/2011 09:33 AM, Eric Anholt wrote: > Improves glxgears performance 19.6% +/- 7.3% (second fps printout. > n=5). glxgearsisnotabenchmark. Is there *any* other number that could be quoted here? This *will* bite you later. :) > --- > src/mesa

Re: [Mesa-dev] [PATCH] mesa: remove depend files from tarballs

2011-07-19 Thread Brian Paul
On 07/19/2011 02:40 PM, Ian Romanick wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07/19/2011 08:29 AM, Brian Paul wrote: Won't this add an extra dependency (on makedepend) in the tarballs? I thought that was the reason for including the empty depend files in the first place. Right?

[Mesa-dev] [Bug 39219] libgl conflict with xbmc causes lock up on xbmc exit

2011-07-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39219 --- Comment #7 from Padfoot 2011-07-19 14:55:50 PDT --- Compiling with modified patch. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the

Re: [Mesa-dev] [PATCH 1/2] meta: Add a GLSL-based _mesa_meta_Clear() variant.

2011-07-19 Thread Kenneth Graunke
On 07/19/2011 01:46 PM, Ian Romanick wrote: > On 07/18/2011 09:33 AM, Eric Anholt wrote: >> This cuts out a large portion of the overhead of glClear() from >> resetting the texenv state and recomputing the fixed function >> programs. It also means less use of fixed function internally in our >> GL

[Mesa-dev] [PATCH 2/3] i965: Enable the PIPE_CONTROL workaround workaround out of paranoia.

2011-07-19 Thread Eric Anholt
There's scary stuff going on in PIPE_CONTROL internals, and if the BSpec says to do this to make PIPE_CONTROL work, I'll go ahead and do it because we'll probably never be able to debug it after the fact. --- src/mesa/drivers/dri/intel/intel_batchbuffer.c | 32 +-- 1 files ch

[Mesa-dev] [PATCH 3/3] i965: Apply a homebrew workaround for GPU hang in OGLC api-texcoord.

2011-07-19 Thread Eric Anholt
The behavior of flushes in the hardware is a maze of twisty passages, and strangely the VS constants appear to be loaded during a pipeline flush instead of at the time of the packet emit according to the simulator. On moving the STATE_BASE_ADDRESS packet to where it really needed to live (in order

[Mesa-dev] [PATCH 1/3] i965: Avoid kernel BUG_ON if we happen to wait on the pipe_control w/a BO.

2011-07-19 Thread Eric Anholt
For this and occlusion queries, we're trying to avoid setting I915_GEM_DOMAIN_RENDER for the write domain, because the data written is definitely not going through the render cache, but we do need to tell the kernel that the object has been written. However, with using I915_GEM_DOMAIN_GTT, the ker

[Mesa-dev] [Bug 39219] libgl conflict with xbmc causes lock up on xbmc exit

2011-07-19 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39219 --- Comment #8 from Padfoot 2011-07-19 15:53:15 PDT --- Confirmed. Modified patch works on x86 & x86_64 Arch 2.6.39.3 Thankyou so much for your speedy resolution. Cheers. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=e

Re: [Mesa-dev] [PATCH 3/4] glsl: Create a standalone executable for testing optimization passes.

2011-07-19 Thread Paul Berry
On 19 July 2011 13:15, Ian Romanick wrote: > We'll probably have to tweak the build a bit to be sure everything ends > up in the tarballs.  Since José's changes recently this may not be as > much of a problem, but we'll at least want to test it.  We can do that > on Wednesday. Ok, cool. Are the

[Mesa-dev] Mesa 7.11 release candidate 2

2011-07-19 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Mesa 7.11-rc2 has been released. This is a release candidate for the 7.11 development release. The tag in the GIT repository for Mesa 7.11-rc2 is 'mesa-7.11-rc2'. Mesa 7.11-rc2 is available for download at ftp://freedesktop.org/pub/mesa/7.11/ md5su

Re: [Mesa-dev] [PATCH] mesa: remove depend files from tarballs

2011-07-19 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07/19/2011 02:09 PM, Brian Paul wrote: > On 07/19/2011 02:40 PM, Ian Romanick wrote: >> -BEGIN PGP SIGNED MESSAGE- >> Hash: SHA1 >> >> On 07/19/2011 08:29 AM, Brian Paul wrote: >> >> Won't this add an extra dependency (on makedepend) in the

Re: [Mesa-dev] [PATCH 1/4] mesa: Add an ifndef guard around the definition of the INLINE macro

2011-07-19 Thread Paul Berry
On 19 July 2011 13:15, Ian Romanick wrote: >> src/egl/main/eglcompiler.h >> src/gallium/include/pipe/p_compiler.h >> src/mapi/mapi/u_compiler.h >> src/mesa/main/compiler.h > > None of those headers should ever cross paths.  The only one of those > that anything under src/mesa/main or src/glsl shou

Re: [Mesa-dev] [PATCH 2/3] i965: Enable the PIPE_CONTROL workaround workaround out of paranoia.

2011-07-19 Thread Eric Anholt
On Tue, 19 Jul 2011 15:44:11 -0700, Eric Anholt wrote: > There's scary stuff going on in PIPE_CONTROL internals, and if the > BSpec says to do this to make PIPE_CONTROL work, I'll go ahead and do > it because we'll probably never be able to debug it after the fact. For this and the following patc

Re: [Mesa-dev] [PATCH 3/3] i965: Apply a homebrew workaround for GPU hang in OGLC api-texcoord.

2011-07-19 Thread Chris Wilson
On Tue, 19 Jul 2011 15:44:12 -0700, Eric Anholt wrote: > The behavior of flushes in the hardware is a maze of twisty passages, > and strangely the VS constants appear to be loaded during a pipeline > flush instead of at the time of the packet emit according to the > simulator. On moving the STATE

Re: [Mesa-dev] [PATCH] mesa: GLES2 should return different error enums for invalid fbo queries

2011-07-19 Thread Ian Romanick
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 07/18/2011 06:11 PM, Marek Olšák wrote: > ES 2.0.25 page 127 says: > > If the value of FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE is NONE, then > querying any other pname will generate INVALID_ENUM. Hurray for be different just for the sake of being d

Re: [Mesa-dev] Mesa 7.11 release candidate 2

2011-07-19 Thread Sebastian H.
Hello list Mesa 7.11-rc2 has been released. This is a release candidate for the 7.11 development release. I've tried to compile this one 996aea3cca40bb34c0a9027411924879 MesaGLUT-7.11-rc2.tar.bz2 After unpacking ./configure --prefix=/opt/mesa PKG_CONFIG_PATH=/opt/mesa/lib/pkgconfig LC_A

Re: [Mesa-dev] [PATCH 2/3] i965: Enable the PIPE_CONTROL workaround workaround out of paranoia.

2011-07-19 Thread Kenneth Graunke
On 07/19/2011 03:44 PM, Eric Anholt wrote: > There's scary stuff going on in PIPE_CONTROL internals, and if the > BSpec says to do this to make PIPE_CONTROL work, I'll go ahead and do > it because we'll probably never be able to debug it after the fact. > --- > src/mesa/drivers/dri/intel/intel_bat

Re: [Mesa-dev] [PATCH 1/3] i965: Avoid kernel BUG_ON if we happen to wait on the pipe_control w/a BO.

2011-07-19 Thread Kenneth Graunke
On 07/19/2011 03:44 PM, Eric Anholt wrote: > For this and occlusion queries, we're trying to avoid setting > I915_GEM_DOMAIN_RENDER for the write domain, because the data written > is definitely not going through the render cache, but we do need to > tell the kernel that the object has been written

[Mesa-dev] [PATCH] Update __DRI_TEX_BUFFER_VERSION to 3

2011-07-19 Thread Zhenyu Wang
When new releaseTexBuffer function got added, the __DRI_TEX_BUFFER_VERSION didn't update as well, which just not enable new function at all. This bumps version to 3. --- include/GL/internal/dri_interface.h |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/include/GL/interna

Re: [Mesa-dev] [PATCH] Update __DRI_TEX_BUFFER_VERSION to 3

2011-07-19 Thread Zhao, Juan J
:) Glad to see that you open this functionality. With this, you not only need to update this macro, but also need to add the NULL point for releaseTexBuffer to related driver. You can update your patch refer to " http://build.meego.com/package/view_file?file=update-__DRI_TEX_BUFFER_VERSION-to-3.p

Re: [Mesa-dev] [PATCH] Update __DRI_TEX_BUFFER_VERSION to 3

2011-07-19 Thread Zhenyu Wang
On 2011.07.20 14:18:53 +0800, Zhao, Juan J wrote: > :) > Glad to see that you open this functionality. > With this, you not only need to update this macro, but also need to add the > NULL point for releaseTexBuffer to related driver. > You can update your patch refer to " > http://build.meego.com