Re: [Mesa-dev] [PATCH 3/4] i965: Convert the build to using automake.

2012-01-12 Thread Matt Turner
On Thu, Jan 12, 2012 at 7:08 PM, Eric Anholt wrote: > This does introduce a warning by the automake build system, that the > missing-symbols test build is non-portable.  That's true -- Mac OS X > can't take something built as a loadable module and just link it as a > library.  Of course, we aren't

Re: [Mesa-dev] [PATCH 4/4] mesa: Enable silent automake rules when available.

2012-01-12 Thread Matt Turner
On Thu, Jan 12, 2012 at 7:08 PM, Eric Anholt wrote: > Finally, a quiet build for the i965 driver, at least! > --- >  configure.ac |    5 + >  1 files changed, 5 insertions(+), 0 deletions(-) > > diff --git a/configure.ac b/configure.ac > index 1a120ec..f3f5e3e 100644 > --- a/configure.ac > +++

Re: [Mesa-dev] [PATCH 3/4] i965: Convert the build to using automake.

2012-01-12 Thread Matt Turner
On Thu, Jan 12, 2012 at 7:08 PM, Eric Anholt wrote: > This does introduce a warning by the automake build system, that the > missing-symbols test build is non-portable.  That's true -- Mac OS X > can't take something built as a loadable module and just link it as a > library.  Of course, we aren't

Re: [Mesa-dev] [PATCH 2/4] intel: Drop the version override code now that we don't have any left.

2012-01-12 Thread Eric Anholt
On Thu, 12 Jan 2012 16:21:59 -0800, Kenneth Graunke wrote: > On 01/12/2012 04:08 PM, Eric Anholt wrote: > > Fixes a compiler warning. > > --- > > src/mesa/drivers/dri/intel/intel_extensions.c |8 > > 1 files changed, 0 insertions(+), 8 deletions(-) > > > > diff --git a/src/mesa/dr

Re: [Mesa-dev] [PATCH 4/4] mesa: Enable silent automake rules when available.

2012-01-12 Thread Kenneth Graunke
On 01/12/2012 04:08 PM, Eric Anholt wrote: Finally, a quiet build for the i965 driver, at least! --- configure.ac |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index 1a120ec..f3f5e3e 100644 --- a/configure.ac +++ b/configure.ac @@ -18,

Re: [Mesa-dev] [PATCH 2/4] intel: Drop the version override code now that we don't have any left.

2012-01-12 Thread Kenneth Graunke
On 01/12/2012 04:08 PM, Eric Anholt wrote: Fixes a compiler warning. --- src/mesa/drivers/dri/intel/intel_extensions.c |8 1 files changed, 0 insertions(+), 8 deletions(-) diff --git a/src/mesa/drivers/dri/intel/intel_extensions.c b/src/mesa/drivers/dri/intel/intel_extensions.c

[Mesa-dev] automake for i965

2012-01-12 Thread Eric Anholt
Note for those of you using LIBGL_DRIVERS_PATH into your builddirs, this changes the location of the driver from lib/ or src/mesa/drivers/dri/i965/ to src/mesa/drivers/dri/i965/.libs/. I've got my script pointing there and lib/ so it works for this or stable branch. __

[Mesa-dev] [PATCH 1/4] intel: Fix warnings of undefined ffs().

2012-01-12 Thread Eric Anholt
For some reason these started showing up with the automake conversion. --- src/mesa/drivers/dri/intel/intel_context.h |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/src/mesa/drivers/dri/intel/intel_context.h b/src/mesa/drivers/dri/intel/intel_context.h index 9fb2902..e67

[Mesa-dev] [PATCH 3/4] i965: Convert the build to using automake.

2012-01-12 Thread Eric Anholt
This does introduce a warning by the automake build system, that the missing-symbols test build is non-portable. That's true -- Mac OS X can't take something built as a loadable module and just link it as a library. Of course, we aren't building this on OS X at all, so it would be nice to be able

[Mesa-dev] [PATCH 4/4] mesa: Enable silent automake rules when available.

2012-01-12 Thread Eric Anholt
Finally, a quiet build for the i965 driver, at least! --- configure.ac |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/configure.ac b/configure.ac index 1a120ec..f3f5e3e 100644 --- a/configure.ac +++ b/configure.ac @@ -18,6 +18,11 @@ AC_CONFIG_AUX_DIR([bin]) AC_CANONI

[Mesa-dev] [PATCH 2/4] intel: Drop the version override code now that we don't have any left.

2012-01-12 Thread Eric Anholt
Fixes a compiler warning. --- src/mesa/drivers/dri/intel/intel_extensions.c |8 1 files changed, 0 insertions(+), 8 deletions(-) diff --git a/src/mesa/drivers/dri/intel/intel_extensions.c b/src/mesa/drivers/dri/intel/intel_extensions.c index 7aa040c..0ce452f 100644 --- a/src/mesa/dr

Re: [Mesa-dev] [PATCH] i965/hiz: Don't bind GL_DRAW_FRAMEBUFFER on GLES

2012-01-12 Thread Ian Romanick
On 01/12/2012 05:44 AM, Neil Roberts wrote: Hi, Chad Versace wrote: [chad]: Make comments more concise. Change the if-condition to be compatible with a core context, which may not advertise old extensions. The change to the if-condition breaks the patch. The problem is this bit of code in f

[Mesa-dev] [Bug 36414] Screen mess "white smoke" when running vdrift

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36414 almos changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution|

[Mesa-dev] [PATCH] glsl_to_tgsi: Use a single pass to get live_intervals of temp regs

2012-01-12 Thread Vincent Lejeune
get_*_temp_* functions were parsing code for each temp, which is not optimal. This patch rewrite the get_live_interval function so that it parses a single time instructions list. The spared time is reused to determine more finely live intervals in case of for loop, which should lower register pre

[Mesa-dev] [PATCH 2/7] i965: Fix refcount leak of the gl_program structure.

2012-01-12 Thread Eric Anholt
Fixes a leak of almost 200kb on a minimal shader_runner program (algebraic-add-add-1). NOTE: This is a candidate for the 8.0 branch. --- src/mesa/drivers/dri/i965/brw_shader.cpp |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_shader.cpp b/s

[Mesa-dev] [PATCH 1/7] mesa: Make the register allocator allocation take a ralloc context.

2012-01-12 Thread Eric Anholt
This fixes a memory leak on i965 context destruction. NOTE: This is a candidate for the 8.0 branch. --- .../drivers/r300/compiler/radeon_pair_regalloc.c |2 +- src/mesa/drivers/dri/i965/brw_fs_reg_allocate.cpp |2 +- .../drivers/dri/i965/brw_vec4_reg_allocate.cpp |2 +- src/mes

[Mesa-dev] [PATCH 3/7] i965/vs: Fix leak of an empty hash_table structure per compile.

2012-01-12 Thread Eric Anholt
This statement got duplicated above, probably in a rebase resolution, so we never freed the extra one. NOTE: This is a candidate for the 8.0 branch. --- src/mesa/drivers/dri/i965/brw_vec4_visitor.cpp |4 1 files changed, 0 insertions(+), 4 deletions(-) diff --git a/src/mesa/drivers/dri/

[Mesa-dev] [PATCH 6/7] glsl: Fix leak of LinkedTransformFeedback.Varyings.

2012-01-12 Thread Eric Anholt
I copy-and-pasted the thing I was allocating for as the context, so the first time it would be NULL (root of a ralloc context) and they'd chain off each other from then on. NOTE: This is a candidate for the 8.0 branch. --- src/glsl/linker.cpp |2 +- 1 files changed, 1 insertions(+), 1 deletio

[Mesa-dev] [PATCH 7/7] glsl: Fix leak of linked uniform names at relink/free of the shader_program.

2012-01-12 Thread Eric Anholt
NOTE: This is a candidate for the 8.0 branch. --- src/glsl/link_uniforms.cpp |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/glsl/link_uniforms.cpp b/src/glsl/link_uniforms.cpp index 02f57d9..d51850c 100644 --- a/src/glsl/link_uniforms.cpp +++ b/src/glsl/link_uniforms

[Mesa-dev] [PATCH 5/7] mesa: Fix leak of uniform storage records on shader program link/free.

2012-01-12 Thread Eric Anholt
NOTE: This is a candidate for the 8.0 branch. --- src/mesa/main/shaderobj.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/mesa/main/shaderobj.c b/src/mesa/main/shaderobj.c index de66851..36f208d 100644 --- a/src/mesa/main/shaderobj.c +++ b/src/mesa/main/shaderobj.c

[Mesa-dev] [PATCH 4/7] i965: Fix leak of the program cache BO on context destroy.

2012-01-12 Thread Eric Anholt
NOTE: This is a candidate for the 8.0 branch. --- src/mesa/drivers/dri/i965/brw_state_cache.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_state_cache.c b/src/mesa/drivers/dri/i965/brw_state_cache.c index 3988625..4ae8e12 100644 --- a/src

[Mesa-dev] [PATCH] mesa: increase size of TFB info Outputs array

2012-01-12 Thread Christoph Bumiller
The nvc0 gallium driver is advertising 128 MAX_INTERLEAVED_COMPS which made it always assert in the linker when TFB was used. The new size corresponds to the maximum number of possible unique outputs when varying packing is used. NOTE: This is a candidate for the 8.0 branch. --- src/mesa/main/mt

[Mesa-dev] [Bug 44723] glReadPixels broken for OSMesa

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44723 Brian Paul changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

Re: [Mesa-dev] [PATCH] i965/gen7: Fix depth buffer rendering to tile offsets.

2012-01-12 Thread Eric Anholt
On Wed, 11 Jan 2012 16:21:38 -0800, Chad Versace wrote: > On 01/11/2012 03:40 PM, Eric Anholt wrote: > > diff --git a/src/mesa/drivers/dri/i965/gen7_misc_state.c > > b/src/mesa/drivers/dri/i965/gen7_misc_state.c > > index 8a383f5..c2f58d5 100644 > > --- a/src/mesa/drivers/dri/i965/gen7_misc_stat

Re: [Mesa-dev] [PATCH] i965/hiz: Don't bind GL_DRAW_FRAMEBUFFER on GLES

2012-01-12 Thread Eric Anholt
On Thu, 12 Jan 2012 13:44:12 +, Neil Roberts wrote: > Hi, > > Chad Versace wrote: > > > [chad]: Make comments more concise. Change the if-condition to be > > compatible with a core context, which may not advertise old extensions. I think when we do core contexts, we'll want to keep flaggin

[Mesa-dev] [Bug 44743] Rendering artefacts with llvmpipe

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44743 --- Comment #6 from Vasily Khoruzhick 2012-01-12 12:37:06 PST --- ArchLinux, x86 (32 bits) -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for

[Mesa-dev] [Bug 44743] Rendering artefacts with llvmpipe

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44743 --- Comment #5 from José Fonseca 2012-01-12 12:29:49 PST --- I couldn't reproduce the issue with LLVM 3.0 on x64 bits debian. Which distro and architecture are you seeing this? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?

[Mesa-dev] [Bug 44743] Rendering artefacts with llvmpipe

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44743 --- Comment #4 from José Fonseca 2012-01-12 12:28:09 PST --- I've uploaded a trace to http://people.freedesktop.org/~jrfonseca/traces/foobillardplus.trace.xz -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- Yo

[Mesa-dev] [Bug 44743] Rendering artefacts with llvmpipe

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44743 --- Comment #3 from Stephane Marchesin 2012-01-12 12:10:19 PST --- Also I can't repro locally (i915g or llvmpipe with llvm 2.8) and Vasily can (i915g or llvmpipe with llvm 3.0). -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?

[Mesa-dev] [Bug 44743] Rendering artefacts with llvmpipe

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44743 --- Comment #2 from Stephane Marchesin 2012-01-12 12:08:19 PST --- Seems to be a bug in draw, it reproduces with i915g also, so probably affects all drivers which use draw. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=e

[Mesa-dev] [Bug 44743] Rendering artefacts with llvmpipe

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44743 José Fonseca changed: What|Removed |Added CC||jfons...@vmware.com --- Comment #1 from J

[Mesa-dev] [Bug 44743] Rendering artefacts with llvmpipe

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44743 Vasily Khoruzhick changed: What|Removed |Added CC||anars...@gmail.com -- Configure bug

[Mesa-dev] [Bug 44743] New: Rendering artefacts with llvmpipe

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44743 Bug #: 44743 Summary: Rendering artefacts with llvmpipe Classification: Unclassified Product: Mesa Version: git Platform: x86 (IA32) OS/Version: Linux (All) Status: NE

[Mesa-dev] [Bug 44723] glReadPixels broken for OSMesa

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44723 --- Comment #2 from Kevin Hobbs 2012-01-12 11:14:07 PST --- (In reply to comment #1) This patch takes the number of VTK OSMesa test failures from 331 to 3. So I'd say it works. -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?t

[Mesa-dev] [PATCH] glsl_to_tgsi: Use a single pass to get live_intervals of temp regs

2012-01-12 Thread Vincent Lejeune
get_*_temp_* functions were parsing code for each temp, which is not optimal. This patch rewrite the get_live_interval function so that it parses a single time instructions list. The spared time is reused to determine more finely live intervals in case of for loop, which should lower register pre

[Mesa-dev] [Bug 44723] glReadPixels broken for OSMesa

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44723 --- Comment #1 from Brian Paul 2012-01-12 10:55:18 PST --- Created attachment 55519 --> https://bugs.freedesktop.org/attachment.cgi?id=55519 add renderbuffer mapping/unmapping functions to osmesa Can you try the attached patch? It fixed my te

Re: [Mesa-dev] [PATCH 1/5] meta: fix incorrect argument order in setup_texture_coords() call

2012-01-12 Thread Jose Fonseca
The whole series looks good to me. Jose - Original Message - > And pass integer width, height values. > > NOTE: This is a candidate for the 8.0 branch. > --- > src/mesa/drivers/common/meta.c |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/src/mesa/drivers

Re: [Mesa-dev] [PATCH] intel: fix mapping of malloc'd renderbuffers

2012-01-12 Thread Eric Anholt
On Mon, 9 Jan 2012 08:18:25 -0700, Brian Paul wrote: > This fixes accum buffer operations. The accumulation buffer is the > only malloc-based renderbuffer for the intel drivers. Reviewed-by: Eric Anholt pgpcxlHVXHCrd.pgp Description: PGP signature ___

[Mesa-dev] [Bug 36414] Screen mess "white smoke" when running vdrift

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36414 Kevin DeKorte changed: What|Removed |Added AssignedTo|i...@freedesktop.org |mesa-dev@lists.freedesktop.

[Mesa-dev] [PATCH 5/5] mesa: remove incorrect (float) cast in mipmap do_row()

2012-01-12 Thread Brian Paul
The array holds GLuint values so remove the float cast. Note, however, that to compute the average of four GLuints we really want to do (a+b+c+d)/4 but that could overflow. This change doesn't address that for now. --- src/mesa/main/mipmap.c |2 +- 1 files changed, 1 insertions(+), 1 deletion

[Mesa-dev] [PATCH 4/5] swrast: use BITFIELD64_BIT() macro to fix MSVC warnings

2012-01-12 Thread Brian Paul
--- src/mesa/swrast/s_aalinetemp.h |2 +- src/mesa/swrast/s_context.c|2 +- src/mesa/swrast/s_span.c |6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/mesa/swrast/s_aalinetemp.h b/src/mesa/swrast/s_aalinetemp.h index d99d9d3..376ef32 100644 --- a/s

[Mesa-dev] [PATCH 3/5] mesa: fix ir_variable declaration

2012-01-12 Thread Brian Paul
ir_variable is a class, not a struct. --- src/mesa/main/ff_fragment_shader.cpp |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/main/ff_fragment_shader.cpp b/src/mesa/main/ff_fragment_shader.cpp index 7b8d1fe..afc17dc 100644 --- a/src/mesa/main/ff_fragment_shader

[Mesa-dev] [PATCH 2/5] mesa: fix incorrect float vs. int values in a few places

2012-01-12 Thread Brian Paul
In the first case, the newImage[] array contains GLuint values. In the second case, the parameter type is GLuint, but the maxDepth value is never used in this case (GL_FLOAT_32_UNSIGNED_INT_24_8_REV). Pass ~OU just to be safe. --- src/mesa/main/texstore.c |6 +++--- 1 files changed, 3 insertio

[Mesa-dev] [PATCH 1/5] meta: fix incorrect argument order in setup_texture_coords() call

2012-01-12 Thread Brian Paul
And pass integer width, height values. NOTE: This is a candidate for the 8.0 branch. --- src/mesa/drivers/common/meta.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/mesa/drivers/common/meta.c b/src/mesa/drivers/common/meta.c index ad289aa..abf2f1f 100644 --- a/src

Re: [Mesa-dev] Drooping multiple driver support in EGL?

2012-01-12 Thread Chia-I Wu
On Tue, Jan 10, 2012 at 12:55 AM, Jose Fonseca wrote: > > > - Original Message - >> On Fri, Dec 23, 2011 at 7:51 PM, Chia-I Wu wrote: >> > On Sat, Dec 24, 2011 at 12:37 AM, Ian Romanick >> > wrote: >> >> On 12/23/2011 07:20 AM, Jose Fonseca wrote: >> >>> >> >>> - Original Message ---

[Mesa-dev] [Bug 44726] New: [regression, r600g] Piglit: glx/glx-shader-sharing fails

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44726 Bug #: 44726 Summary: [regression,r600g] Piglit: glx/glx-shader-sharing fails Classification: Unclassified Product: Mesa Version: git Platform: x86-64 (AMD64)

Re: [Mesa-dev] [PATCH] mesa: use _mesa_is_user_fbo() and _mesa_is_winsys_fbo() functions

2012-01-12 Thread Jose Fonseca
Looks good to me. Jose - Original Message - > Rather than testing the fbo's name against zero. > --- > src/mesa/main/buffers.c | 13 ++- > src/mesa/main/fbobject.c | 47 > - > src/mesa/main/fbobject.h | 22 +++

[Mesa-dev] [PATCH] mesa: use _mesa_is_user_fbo() and _mesa_is_winsys_fbo() functions

2012-01-12 Thread Brian Paul
Rather than testing the fbo's name against zero. --- src/mesa/main/buffers.c | 13 ++- src/mesa/main/fbobject.c | 47 - src/mesa/main/fbobject.h | 22 +++ src/mesa/main/framebuffer.c |8 +++--- src/mesa/main/re

[Mesa-dev] [Bug 44466] Assertion 'LLVMOffsetOfElement' when running Furmark with wine

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44466 José Fonseca changed: What|Removed |Added CC||jfons...@vmware.com --- Comment #4 from J

[Mesa-dev] [Bug 44618] Cross-compilation broken by glsl builtin_compiler

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44618 --- Comment #3 from José Fonseca 2012-01-12 08:10:37 PST --- (In reply to comment #2) > Are you saying that using SCons, Mesa already cross-builds properly? Yes -- I use MingW cross compilation with SCons all the time -- but SCons doesn't build

Re: [Mesa-dev] [PATCH 2/2] mesa/gallium: add FFS_DEFINED to protect ffs() from multiple definitions

2012-01-12 Thread Jose Fonseca
Looks good Brian. Jose - Original Message - > We include both imports.h and u_math.h in the state tracker. This > leads to multiple, conflicting definitions of ffs() with MSVC. > Use FFS_DEFINED to skip the ffs() in u_math.h. > --- > src/gallium/auxiliary/util/u_math.h |5 + > s

[Mesa-dev] [Bug 44693] [r600g, regression] Piglit: Four GL_SELECT tests fail

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44693 Kai changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

Re: [Mesa-dev] [PATCH] st/dri: Remove useless flush front.

2012-01-12 Thread Jose Fonseca
- Original Message - > On Wed, Jan 11, 2012 at 10:13, Jose Fonseca > wrote: > > - Original Message - > >> Where else would the flush go? > > > > Maybe one of the callers already invoked glFlush, or something like > > that. > > > > Not that I could see. > > >> I'll look into fix

[Mesa-dev] [Bug 44561] Piglit: spec/glsl-1.10/execution/interpolation/interpolation-none-gl_*-vertex fail

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44561 --- Comment #7 from Kai 2012-01-12 07:58:36 PST --- (In reply to comment #6) > It should be fixed in git, please retest and close. It isn't for my system (see comment #0). I tested master/87118d84 and as can be seen from e.g.

[Mesa-dev] [PATCH 2/2] mesa/gallium: add FFS_DEFINED to protect ffs() from multiple definitions

2012-01-12 Thread Brian Paul
We include both imports.h and u_math.h in the state tracker. This leads to multiple, conflicting definitions of ffs() with MSVC. Use FFS_DEFINED to skip the ffs() in u_math.h. --- src/gallium/auxiliary/util/u_math.h |5 + src/mesa/main/imports.h |4 2 files changed, 9

[Mesa-dev] [PATCH 1/2] st/mesa: re-order #includes in st_manager.c

2012-01-12 Thread Brian Paul
include mesa headers before gallium headers to avoid problem with ffs() being defined in u_math.h and then again in imports.h The next commit will add some #ifdefs to prevent multiple definitions of ffs(). --- src/mesa/state_tracker/st_manager.c | 20 ++-- 1 files changed, 10 in

[Mesa-dev] [mesa-demos-git] make fails on eglkms

2012-01-12 Thread Lone_Wolf
I am trying to build mesa-demos git master version 20120112 on archlinux. ./autogen.sh --prefix=/usr make last lines of output : eglkms-eglkms.o: In function `main': eglkms.c:(.text.startup+0x40): undefined reference to `gbm_create_device' eglkms.c:(.text.startup+0x25a): undefined

[Mesa-dev] [Bug 44723] New: glReadPixels broken for OSMesa

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44723 Bug #: 44723 Summary: glReadPixels broken for OSMesa Classification: Unclassified Product: Mesa Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: N

Re: [Mesa-dev] [PATCH] mesa: remove _mesa_ffs(), implement ffs() for non-GNU platforms

2012-01-12 Thread Brian Paul
On 01/11/2012 08:59 PM, Alexander von Gluck wrote: On 11.01.2012 21:11, Brian Paul wrote: On 01/11/2012 08:06 PM, Alexander von Gluck wrote: On 11.01.2012 14:50, Brian Paul wrote: Call ffs() and ffsll() everywhere. Define our own ffs(), ffsll() functions when the platform doesn't have them. --

Re: [Mesa-dev] [PATCH] i965/hiz: Don't bind GL_DRAW_FRAMEBUFFER on GLES

2012-01-12 Thread Neil Roberts
Hi, Chad Versace wrote: > [chad]: Make comments more concise. Change the if-condition to be > compatible with a core context, which may not advertise old extensions. The change to the if-condition breaks the patch. The problem is this bit of code in fbobject.c: static struct gl_framebuffer * g

[Mesa-dev] [Bug 44701] Regnum online textures flickering

2012-01-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44701 Michel Dänzer changed: What|Removed |Added AssignedTo|dri-devel@lists.freedesktop |mesa-dev@lists.freedesktop.