[Mesa-dev] [Bug 79469] Commit e3cc0d90e14e62a0a787b6c07a6df0f5c84039be breaks unigine heaven

2014-06-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79469 --- Comment #14 from kmod --- While Unity now loads, graphic is still completely messed up for intel cards http://www.phoronix.com/forums/showthread.php?50038-Updated-and-Optimized-Ubuntu-Free-Graphics-Drivers/page116 -- You are receiving this

[Mesa-dev] [Bug 79469] Commit e3cc0d90e14e62a0a787b6c07a6df0f5c84039be breaks unigine heaven

2014-06-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79469 --- Comment #15 from Kenneth Graunke --- (In reply to comment #14) > While Unity now loads, graphic is still completely messed up for intel cards > > http://www.phoronix.com/forums/showthread.php?50038-Updated-and-Optimized- > Ubuntu-Free-Graphi

[Mesa-dev] [Bug 79469] Commit e3cc0d90e14e62a0a787b6c07a6df0f5c84039be breaks unigine heaven

2014-06-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79469 --- Comment #16 from Tapani Pälli --- (In reply to comment #15) > (In reply to comment #14) > > While Unity now loads, graphic is still completely messed up for intel cards > > > > http://www.phoronix.com/forums/showthread.php?50038-Updated-and-

[Mesa-dev] [PATCH] i965/fs: Allow array dereference of HW_REG.

2014-06-04 Thread Chris Forbes
When dereferencing an element of gl_SampleMaskIn[], the source register here will be a HW_REG rather than a VGRF because the payload slot is now exposed directly. Fixes an assertion failure in the Piglit test: tests/spec/arb_gpu_shader5/execution/samplemaskin-basic Signed-off-by: Chris Forbes

Re: [Mesa-dev] [PATCH] configure.ac: Do not use Pthreads with MinGW.

2014-06-04 Thread Jon TURNEY
On 04/06/2014 01:06, Vinson Lee wrote: Match the behavior of the SCons MinGW build. This patch also fixes these build errors. CC glapi_entrypoint.lo glapi_entrypoint.c: In function 'init_glapi_relocs_once': glapi_entrypoint.c:341:4: error: unknown type name 'pthread_once_t' static

[Mesa-dev] [PATCH] i965: Set minimum point size to 1.0 for non-sprite non-aa points

2014-06-04 Thread Pavel Popov
Both point size states were covered (glPointSize function and gl_PointSize value). Piglit test 'spec_OpenGL_2.0_vs-point_size-zero' which uses gl_PointSize value in a shader passes. Modification of this test which uses glPointSize function also passes. Signed-off-by: Pavel Popov --- src/mesa/

Re: [Mesa-dev] [PATCH 0/2] Build a driswrast-using libGL on non-DRM targets

2014-06-04 Thread Jon TURNEY
On 03/06/2014 17:37, Emil Velikov wrote: On 03/06/14 14:14, Jon TURNEY wrote: As a follow-up to my "Fix Apple-DRI GLX" patchset, allow building of a libGL capable of using driswrast on targets without libdrm, and make that the default configuration. The --disable-driglx-direct option only appea

Re: [Mesa-dev] [PATCH 1/2] glx: Fix build in GLX_DIRECT_RENDERING !GLX_USE_APPLEGL !GLX_USE_DRM case

2014-06-04 Thread Aaron Watry
On Tue, Jun 3, 2014 at 10:26 AM, Jon TURNEY wrote: > On 03/06/2014 15:19, Aaron Watry wrote: >> >> On Tue, Jun 3, 2014 at 8:14 AM, Jon TURNEY >> wrote: >>> >>> Some untangling to fix building in the dri_platform=none, >>> --enable-driglx-direct >>> case, where only driswast can be used. >>> >>> T

Re: [Mesa-dev] [PATCH 1/4] vl: add more avc profiles

2014-06-04 Thread Andy Furniss
Christian König wrote: Reviewed and pushed. Pushed where? I guess they don't affect radeon uvd anyway, just when I saw 422 and 444, I was hopeful that uvd cards would get 422 vo like non uvd cards do - I have a need for that (to use TV deinterlacer). ___

Re: [Mesa-dev] [PATCH] i965/fs: Allow array dereference of HW_REG.

2014-06-04 Thread Kenneth Graunke
On Wednesday, June 04, 2014 09:06:31 PM Chris Forbes wrote: > When dereferencing an element of gl_SampleMaskIn[], the source register > here will be a HW_REG rather than a VGRF because the payload slot is > now exposed directly. > > Fixes an assertion failure in the Piglit test: > >tests/spec

Re: [Mesa-dev] [PATCH 1/4] vl: add more avc profiles

2014-06-04 Thread Christian König
Am 04.06.2014 16:20, schrieb Andy Furniss: Christian König wrote: Reviewed and pushed. Pushed where? Unfortunately to the wrong server instead of upstream, thanks for the notice. I guess they don't affect radeon uvd anyway, just when I saw 422 and 444, I was hopeful that uvd cards would

Re: [Mesa-dev] ARB_sso layout() + other qualifiers

2014-06-04 Thread Ian Romanick
On 05/19/2014 10:06 PM, Chris Forbes wrote: > Hi Ian, > > When I was writing the `precise` support I found some error cases in > the GLSL parser where we reject combinations of layout() with > invariant / interpolation / etc qualifiers. > > This seems to be consistent with the GLSL 1.50 grammar (

[Mesa-dev] [PATCH 1/3] util/u_format: move utility function from r600g

2014-06-04 Thread Grigori Goronzy
We need this for radeonsi, and it might be useful for other drivers, too. --- src/gallium/auxiliary/util/u_format.c | 11 +++ src/gallium/auxiliary/util/u_format.h | 3 +++ src/gallium/drivers/r600/r600_blit.c | 12 +--- 3 files changed, 15 insertions(+), 11 deletions(-) diff --

[Mesa-dev] [PATCH 2/3] radeonsi: add sampling of 4:2:2 subsampled textures

2014-06-04 Thread Grigori Goronzy
This makes 4:2:2 video surfaces work in VDPAU. --- src/gallium/drivers/radeon/r600_texture.c | 5 +- src/gallium/drivers/radeonsi/si_blit.c| 91 ++- src/gallium/drivers/radeonsi/si_state.c | 15 + 3 files changed, 71 insertions(+), 40 deletions(-) diff --git

[Mesa-dev] [PATCH 3/3] radeon/uvd: disable VC-1 simple/main on UVD 2.x

2014-06-04 Thread Grigori Goronzy
It's about as broken as on later UVD revisions. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=66452 Cc: "10.1 10.2" --- src/gallium/drivers/radeon/radeon_video.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gallium/drivers/radeon/radeon_video.c b/src/gall

Re: [Mesa-dev] [PATCH 3/3] radeon/uvd: disable VC-1 simple/main on UVD 2.x

2014-06-04 Thread Christian König
Am 04.06.2014 18:54, schrieb Grigori Goronzy: It's about as broken as on later UVD revisions. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=66452 Cc: "10.1 10.2" Do you have commit rights? Patch is Reviewed-by: Christian König Thanks for the help, Christian. --- src/gallium/dr

Re: [Mesa-dev] [PATCH:mesa] Use -z defs instead of --no-undefined on Solaris

2014-06-04 Thread Vinson Lee
On Tue, Jun 3, 2014 at 2:11 PM, Ian Romanick wrote: > On 06/02/2014 06:07 PM, Alan Coopersmith wrote: >> While recent versions of the Solaris linker support --no-undefined, >> older ones do not, and even current ones get confused if the Makefile >> passes one form and libtool sneaks in the other.

[Mesa-dev] [Bug 79646] New: Account request

2014-06-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79646 Priority: medium Bug ID: 79646 Assignee: mesa-dev@lists.freedesktop.org Summary: Account request Severity: normal Classification: Unclassified OS: All Reporter: g..

[Mesa-dev] [Bug 79646] Account request

2014-06-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79646 --- Comment #1 from Grigori Goronzy --- Created attachment 100411 --> https://bugs.freedesktop.org/attachment.cgi?id=100411&action=edit SSH pubkey -- You are receiving this mail because: You are the assignee for the bug. _

[Mesa-dev] [Bug 79646] Account request

2014-06-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79646 --- Comment #2 from Grigori Goronzy --- Created attachment 100412 --> https://bugs.freedesktop.org/attachment.cgi?id=100412&action=edit GPG pubkey -- You are receiving this mail because: You are the assignee for the bug. _

Re: [Mesa-dev] [PATCH] configure.ac: Do not use Pthreads with MinGW.

2014-06-04 Thread Emil Velikov
On 04/06/14 12:50, Jon TURNEY wrote: > On 04/06/2014 01:06, Vinson Lee wrote: >> Match the behavior of the SCons MinGW build. >> >> This patch also fixes these build errors. >> >>CC glapi_entrypoint.lo >> glapi_entrypoint.c: In function 'init_glapi_relocs_once': >> glapi_entrypoint.c:341:

[Mesa-dev] [Bug 79646] Account request

2014-06-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79646 --- Comment #3 from Marek Olšák --- Grigori has done some great work on the open source drivers. Please give him an account. Thank you. -- You are receiving this mail because: You are the assignee for the bug. __

[Mesa-dev] [PATCH] Implement the ARB_clear_texture extension

2014-06-04 Thread Neil Roberts
The clear texture extension is used to clear a texture to a given value without having to provide a buffer for the whole texture and without having to create an FBO. This patch provides a generic implementation that works with any driver. There are two approaches, the first being in meta.c which tr

[Mesa-dev] [PATCH piglit 2/3] Test GL_ARB_clear_texture using cube map textures

2014-06-04 Thread Neil Roberts
This adds a test for glClearTexSubImage when clearing a sub-region of a cube map texture. Each face of the cube map is cleared to a separate colour and then one pixel of each face is rendered using points. The colours are then probed to check whether the clear worked. This is important to test beca

[Mesa-dev] [PATCH piglit 3/3] Test GL_ARB_clear_texture using depth-stencil textures

2014-06-04 Thread Neil Roberts
This adds a test for glClearTexSubImage when clearing a sub-region of a depth-stencil texture. A 2x2 texture is created and then two pixels of it are cleared using different values. The texture is then read back using glGetTexImage and compared with the expected values. This is important to test b

[Mesa-dev] Debugging into Mesa Driver

2014-06-04 Thread roshan chaudhari
Hello, I just cloned the mesa driver from git repository. I am trying to debug the opengl application with mesa driver. I am not sure which flag to enable for debugging and where, I built a driver with -enable-debug in Makefile and added --DEBUG in CFLAGS in Makefile but still when I try to

[Mesa-dev] [PATCH piglit 1/3] Test GL_ARB_clear_texture using 3D textures

2014-06-04 Thread Neil Roberts
This adds a test for glClearTexSubImage when clearing a sub-region of a 3D texture. Two sub-regions are cleared, one using a NULL data parameter and one providing a colour. Both regions have a depth greater than 1. All of the images of the texture are then rendered to the window and probed for the

Re: [Mesa-dev] [PATCH:mesa] Use -z defs instead of --no-undefined on Solaris

2014-06-04 Thread Emil Velikov
On 03/06/14 02:07, Alan Coopersmith wrote: > While recent versions of the Solaris linker support --no-undefined, > older ones do not, and even current ones get confused if the Makefile > passes one form and libtool sneaks in the other. > Perhaps we should have made this a configure time check rath

[Mesa-dev] [Bug 79646] Account request

2014-06-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79646 --- Comment #4 from Christian König --- Yeah, agree. Please add an account for him. -- You are receiving this mail because: You are the assignee for the bug. ___ mesa-dev mailing list mesa-dev@lists.f

Re: [Mesa-dev] [PATCH] Implement the ARB_clear_texture extension

2014-06-04 Thread Ilia Mirkin
On Wed, Jun 4, 2014 at 2:12 PM, Neil Roberts wrote: > The clear texture extension is used to clear a texture to a given value > without having to provide a buffer for the whole texture and without having to > create an FBO. This patch provides a generic implementation that works with > any driver.

Re: [Mesa-dev] Debugging into Mesa Driver

2014-06-04 Thread Brian Paul
On 06/04/2014 11:14 AM, roshan chaudhari wrote: Hello, I just cloned the mesa driver from git repository. I am trying to debug the opengl application with mesa driver. I am not sure which flag to enable for debugging and where, I built a driver with -enable-debug in Makefile and added --

[Mesa-dev] [Bug 79646] Account request

2014-06-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79646 Brian Paul changed: What|Removed |Added Assignee|mesa-dev@lists.freedesktop. |sitewranglers@lists.freedes

[Mesa-dev] [Bug 79629] [dri3] piglit glx_GLX_ARB_create_context_current_with_no_framebuffer fails

2014-06-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79629 Chris Wilson changed: What|Removed |Added Assignee|ch...@chris-wilson.co.uk|mesa-dev@lists.freedesktop.

Re: [Mesa-dev] Debugging into Mesa Driver

2014-06-04 Thread Ian Romanick
On 06/04/2014 11:14 AM, roshan chaudhari wrote: > Hello, > I just cloned the mesa driver from git repository. I am trying > to debug the opengl application with mesa driver. I am not sure which > flag to enable for debugging and where, I built a driver with > -enable-debug in Makefile and a

Re: [Mesa-dev] [PATCH] configure.ac: Do not use Pthreads with MinGW.

2014-06-04 Thread Jose Fonseca
- Original Message - > On 04/06/14 12:50, Jon TURNEY wrote: > > On 04/06/2014 01:06, Vinson Lee wrote: > >> Match the behavior of the SCons MinGW build. > >> > >> This patch also fixes these build errors. > >> > >>CC glapi_entrypoint.lo > >> glapi_entrypoint.c: In function 'init

Re: [Mesa-dev] [PATCH 1/6] i965/fs: Refactor check for potential copy propagated instructions.

2014-06-04 Thread Matt Turner
Reviewed-by: Matt Turner ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] [PATCH 2/6] i965/fs: copy propagate 'NOT' instruction when used with logical operation

2014-06-04 Thread Matt Turner
On Tue, Jun 3, 2014 at 3:59 PM, Abdiel Janulgue wrote: > On Broadwell, this reduces the instruction to 1 operation when NOT is used > with > a logical instruction I expected patch #2 to fix the bug were we'd copy propagate mov a, -b and c, e, a and yield and c, e, -b As it is, this patch is

Re: [Mesa-dev] [PATCH 3/6] i965/fs: skip copy-propate for negated logical instructions and 'NOT' src registers

2014-06-04 Thread Matt Turner
On Tue, Jun 3, 2014 at 3:59 PM, Abdiel Janulgue wrote: > The negation source modifier on src registers has changed meaning in > Broadwell when > used with logical operations. > > Make sure copy propagation occurs only for original statements that does not > have > negated source registers and de

Re: [Mesa-dev] [PATCH 4/6] i965/vec4: copy propagate 'NOT' instruction when used with logical operation

2014-06-04 Thread Matt Turner
On Tue, Jun 3, 2014 at 3:59 PM, Abdiel Janulgue wrote: > On Broadwell, this reduces the instruction to 1 operation when 'NOT' is used > with a > logical instruction. Same comments about patches 2 and 3 apply to 4 and 5, respectively. Patch 4 should fix the current bug, and patch 5 should allow

Re: [Mesa-dev] [PATCH 6/6] i965/disasm: Properly debug negate source modifier for logical instructions

2014-06-04 Thread Matt Turner
On Tue, Jun 3, 2014 at 3:59 PM, Abdiel Janulgue wrote: > Signed-off-by: Abdiel Janulgue > --- > src/mesa/drivers/dri/i965/gen8_disasm.c | 24 +--- > 1 file changed, 21 insertions(+), 3 deletions(-) > > diff --git a/src/mesa/drivers/dri/i965/gen8_disasm.c > b/src/mesa/drivers

Re: [Mesa-dev] [PATCH] Implement the ARB_clear_texture extension

2014-06-04 Thread Ian Romanick
On 06/04/2014 11:12 AM, Neil Roberts wrote: > The clear texture extension is used to clear a texture to a given value > without having to provide a buffer for the whole texture and without having to > create an FBO. This patch provides a generic implementation that works with > any driver. There ar

Re: [Mesa-dev] [PATCH 3/6] i965/fs: skip copy-propate for negated logical instructions and 'NOT' src registers

2014-06-04 Thread Abdiel Janulgue
On 04.06.2014 15:22, Matt Turner wrote: On Tue, Jun 3, 2014 at 3:59 PM, Abdiel Janulgue wrote: The negation source modifier on src registers has changed meaning in Broadwell when used with logical operations. Make sure copy propagation occurs only for original statements that does not have

Re: [Mesa-dev] [PATCH] Implement the ARB_clear_texture extension

2014-06-04 Thread Ilia Mirkin
On Wed, Jun 4, 2014 at 6:42 PM, Ian Romanick wrote: > On 06/04/2014 11:12 AM, Neil Roberts wrote: >> The clear texture extension is used to clear a texture to a given value >> without having to provide a buffer for the whole texture and without having >> to >> create an FBO. This patch provides a

[Mesa-dev] [PATCH] c11: Do not include threads_win32.h if using Pthreads.

2014-06-04 Thread Vinson Lee
Signed-off-by: Vinson Lee --- include/c11/threads.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/c11/threads.h b/include/c11/threads.h index 45823df..e251a79 100644 --- a/include/c11/threads.h +++ b/include/c11/threads.h @@ -66,7 +66,7 @@ enum { /*---

Re: [Mesa-dev] [RFC 02/20] glsl: glsl_type serialization

2014-06-04 Thread Matt Turner
On Mon, Jun 2, 2014 at 5:05 AM, Tapani Pälli wrote: > Will be utilized by IR serialization to serialize user defined types. > > Signed-off-by: Tapani Pälli > Reviewed-by: Paul Berry (v1) > --- > src/glsl/glsl_types.cpp | 58 > + > src/glsl/glsl_t

[Mesa-dev] [PATCH] mesa/tnl_dd: Fix clang constant-logical-operand warnings.

2014-06-04 Thread Vinson Lee
This patch fixes these clang constant-logical-operand warnings. ../../../../../src/mesa/tnl_dd/t_dd_tritmp.h:130:32: warning: use of logical '||' with constant operand [-Wconstant-logical-operand] if (DO_TWOSIDE || DO_OFFSET || DO_UNFILLED || DO_TWOSTENCIL) ^ ~~

Re: [Mesa-dev] [RFC 08/20] glsl: glsl_type deserialization

2014-06-04 Thread Matt Turner
On Mon, Jun 2, 2014 at 5:05 AM, Tapani Pälli wrote: > Will be utilized by IR deserialization for binary shaders. > > Signed-off-by: Tapani Pälli > --- > src/glsl/glsl_types.cpp | 106 > > src/glsl/glsl_types.h | 19 + > 2 files changed

Re: [Mesa-dev] [RFC 18/20] mesa/program: add disk cache functionality

2014-06-04 Thread Matt Turner
On Mon, Jun 2, 2014 at 5:05 AM, Tapani Pälli wrote: > Patch adds functions to cache linked shader programs to disk. Cache > key is generated from shader sources of the program. Cache path is > generated on initialization if does not exist yet. > > Signed-off-by: Tapani Pälli > --- > src/mesa/Mak

Re: [Mesa-dev] [RFC 19/20] mesa: take shader program cache in to use

2014-06-04 Thread Matt Turner
On Mon, Jun 2, 2014 at 5:06 AM, Tapani Pälli wrote: > Patch initializes program cache on context creation, caches linked > programs and skips linking if program is found from the cache. > > Signed-off-by: Tapani Pälli > --- > src/mesa/main/context.c | 4 > src/mesa/program/ir_to_mes

Re: [Mesa-dev] [PATCH] mesa/tnl_dd: Fix clang constant-logical-operand warnings.

2014-06-04 Thread Brian Paul
Reviewed-by: Brian Paul But I think you could trim down the commit message to give just one example. On 06/04/2014 04:48 PM, Vinson Lee wrote: This patch fixes these clang constant-logical-operand warnings. ../../../../../src/mesa/tnl_dd/t_dd_tritmp.h:130:32: warning: use of logical '||' wi

Re: [Mesa-dev] [PATCH 1/5] mesa: add new enum MAX_UNIFORM_LOCATIONS

2014-06-04 Thread Ian Romanick
On 05/26/2014 01:32 AM, Tapani Pälli wrote: > Patch adds new implementation dependent value required by the > GL_ARB_explicit_uniform_location extension. Default value for user > assignable locations is calculated as sum of MaxUniformComponents > for each stage. > > v2: fix descriptor in get_hash_

Re: [Mesa-dev] [PATCH 2/5] glsl: add glsl_type::uniform_locations() helper function

2014-06-04 Thread Ian Romanick
On 05/26/2014 01:32 AM, Tapani Pälli wrote: > This function calculates the number of uniform locations required > by the type in UniformRemapTable. > > Signed-off-by: Tapani Pälli With the two things mentioned below fixed, Reviewed-by: Ian Romanick > --- > src/glsl/glsl_types.cpp | 26 ++

Re: [Mesa-dev] [PATCH] mesa/tnl_dd: Fix clang constant-logical-operand warnings.

2014-06-04 Thread Matt Turner
On Wed, Jun 4, 2014 at 4:48 PM, Vinson Lee wrote: > This patch fixes these clang constant-logical-operand warnings. > > ../../../../../src/mesa/tnl_dd/t_dd_tritmp.h:130:32: warning: use of logical > '||' with constant operand [-Wconstant-logical-operand] >if (DO_TWOSIDE || DO_OFFSET || DO_UNF

Re: [Mesa-dev] [PATCH 3/5] glsl/linker: initialize explicit uniform locations

2014-06-04 Thread Ian Romanick
On 05/26/2014 01:32 AM, Tapani Pälli wrote: > Patch initializes the UniformRemapTable for explicit locations. This > needs to happen before optimizations to make sure all inactive uniforms > get their explicit locations correctly. > > v2: fix initialization bug, introduce define for inactive unifo

Re: [Mesa-dev] [PATCH] Implement the ARB_clear_texture extension

2014-06-04 Thread Ian Romanick
On 06/04/2014 04:15 PM, Ilia Mirkin wrote: > On Wed, Jun 4, 2014 at 6:42 PM, Ian Romanick wrote: >> On 06/04/2014 11:12 AM, Neil Roberts wrote: >>> + >>> + ctx->Driver.ClearTexSubImage(ctx, >>> +texImage, >>> +xoffset, yoffset, zoff

Re: [Mesa-dev] [PATCH 4/5] glsl/linker: assign explicit uniform locations

2014-06-04 Thread Ian Romanick
On 05/26/2014 01:32 AM, Tapani Pälli wrote: > Patch refactors the existing uniform processing so explicit locations > are taken in to account during variable processing. These locations > are temporarily stored in gl_uniform_storage before actual locations > are set. > > UNMAPPED_UNIFORM_LOC marks

Re: [Mesa-dev] [PATCH 5/5] mesa: support inactive uniforms in glUniform* functions

2014-06-04 Thread Ian Romanick
On 05/26/2014 01:32 AM, Tapani Pälli wrote: > Support inactive uniforms that have explicit location set in > glUniform* functions. > > v2: remove unnecessary extension check, use new define (Ian) > > Signed-off-by: Tapani Pälli Reviewed-by: Ian Romanick > --- > src/mesa/main/uniform_query.cp

Re: [Mesa-dev] [PATCH] Implement the ARB_clear_texture extension

2014-06-04 Thread Ilia Mirkin
On Wed, Jun 4, 2014 at 9:26 PM, Ian Romanick wrote: > On 06/04/2014 04:15 PM, Ilia Mirkin wrote: >> On Wed, Jun 4, 2014 at 6:42 PM, Ian Romanick wrote: >>> On 06/04/2014 11:12 AM, Neil Roberts wrote: + + ctx->Driver.ClearTexSubImage(ctx, +texImage,

Re: [Mesa-dev] Debugging into Mesa Driver

2014-06-04 Thread roshan chaudhari
Thanks for reply. I have added "CFLAGS='-Og -ggdb3' CXXFLAGS='-Og -ggdb3'" into configure file and ran "./configure --enable-debug" ; make; make install but still it did not step into driver. On Wed, Jun 4, 2014 at 1:09 PM, Ian Romanick wrote: > On 06/04/2014 11:14 AM, roshan chaudhari wrote:

[Mesa-dev] [PATCH] i965: use _mesa_align_malloc in intel_miptree_map_movntdqa

2014-06-04 Thread Tapani Pälli
This fixes case where we have 1x1 size buffer and misalignment is 0. Signed-off-by: Tapani Pälli Reviewed-by: Ian Romanick Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=79616 --- src/mesa/drivers/dri/i965/intel_mipmap_tree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) di

[Mesa-dev] [PATCH v2] glsl: parser changes for GL_ARB_explicit_uniform_location

2014-06-04 Thread Tapani Pälli
Patch adds a preprocessor define for the extension and stores explicit location data for uniforms during AST->HIR conversion. It also sets layout token to be available when having the extension in place. v2: change parser check to require GLSL 330 or enabling GL_ARB_explicit_attrib_location (I

[Mesa-dev] [Bug 79629] [dri3] piglit glx_GLX_ARB_create_context_current_with_no_framebuffer fails

2014-06-04 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79629 --- Comment #2 from meng --- The bisected commits also cause bug 79623. -- You are receiving this mail because: You are the assignee for the bug. ___ mesa-dev mailing list mesa-dev@lists.freedesktop.o

Re: [Mesa-dev] [PATCH] i965: use _mesa_align_malloc in intel_miptree_map_movntdqa

2014-06-04 Thread Matt Turner
Reviewed-by: Matt Turner ___ mesa-dev mailing list mesa-dev@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/mesa-dev

Re: [Mesa-dev] Debugging into Mesa Driver

2014-06-04 Thread Pekka Paalanen
On Wed, 4 Jun 2014 21:46:38 -0700 roshan chaudhari wrote: > Thanks for reply. > > I have added "CFLAGS='-Og -ggdb3' CXXFLAGS='-Og -ggdb3'" into configure > file and ran The advice was to add those to the configure command line, not into the configure file. Undo all your edits from Mesa and star