Re: [Mesa-dev] [PATCH] android: fix build issues with genxml, isl

2016-08-28 Thread kalyan kondapally
Ya, things build for me too now. Thanks. Br, Kalyan On Sun, Aug 28, 2016 at 10:05 PM, Tapani Pälli wrote: > Nice work, now things build fine! > > Reviewed-by: Tapani Pälli > > On 08/28/2016 03:51 AM, Mauro Rossi wrote: >> >> Hi Emil, Jason, Tapani, >> >> this weekend I had planned to check me

Re: [Mesa-dev] [PATCH 1/3] Mesa: Add support for GL_OES_texture_*float* extensions.

2015-01-27 Thread kalyan kondapally
Thanks Tapani. I was waiting to see if their are any more comments before addressing Emil's review. Br, Kalyan On Mon, Jan 26, 2015 at 11:30 PM, Tapani Pälli wrote: > > > On 01/08/2015 06:30 AM, Kalyan Kondapally wrote: >> >> This patch series adds support for fol

[Mesa-dev] [PATCH 3/3] Mesa: Advertise GL_OES_texture_*float* extensions support with i965.

2015-01-07 Thread Kalyan Kondapally
This patch advertises support for GL_OES_texture_*float* extensions when using i965 drivers. Signed-off-by: Kevin Rogovin Signed-off-by: Kalyan Kondapally --- src/mesa/drivers/dri/i965/intel_extensions.c | 5 + 1 file changed, 5 insertions(+) diff --git a/src/mesa/drivers/dri/i965

[Mesa-dev] [PATCH 1/3] Mesa: Add support for GL_OES_texture_*float* extensions.

2015-01-07 Thread Kalyan Kondapally
extensions, by default the support is disabled. Next patch in the series introduces support for HALF_FLOAT_OES token. Signed-off-by: Kevin Rogovin Signed-off-by: Kalyan Kondapally --- src/mesa/main/extensions.c | 4 +++ src/mesa/main/mtypes.h | 6 + src/mesa/main/teximage.c | 64

[Mesa-dev] [PATCH 2/3] Mesa: Add support for HALF_FLOAT_OES type.

2015-01-07 Thread Kalyan Kondapally
This patch adds needed support for accepting HALF_FLOAT_OES as valid type for TexImage*D and TexSubImage*D when Texture FLoat extensions are supported. Signed-off-by: Kevin Rogovin Signed-off-by: Kalyan Kondapally --- src/mesa/main/glformats.c | 46

Re: [Mesa-dev] [Patch v3] Mesa: Add support for GL_OES_texture_*float* extensions.

2014-12-03 Thread kalyan kondapally
iginal version. >>If we care about saving a >>couple lines of code here and there, we should make a function that >>drivers explicitly call to do that. Will try do this once initial version gets merged. Br, Kalyan On Tue, Dec 2, 2014 at 12:36 PM, Ian Romanick wrote: > On

Re: [Mesa-dev] [Patch v2] Mesa: Add support for GL_OES_texture_*float* extensions.

2014-12-01 Thread kalyan kondapally
: > Thanks for the updates. A few more nitpicks... > > > > On 11/27/2014 11:56 AM, Kalyan Kondapally wrote: >> >> This patch adds support for following GLES2 Texture Float extensions: >> 1)GL_OES_texture_float, >> 2)GL_OES_texture_half_float, >> 3)GL_OES

[Mesa-dev] [Patch v3] Mesa: Add support for GL_OES_texture_*float* extensions.

2014-11-28 Thread Kalyan Kondapally
urner) Enable support for float extensions in case driver supports ARB_texture_float. (Fredrik Höglund) Signed-off-by: Kevin Rogovin Signed-off-by: Kalyan Kondapally --- src/mesa/main/context.c| 15 +++ src/mesa/main/extensions.c | 4 +++ src/mesa/main/glformats.c

Re: [Mesa-dev] [Patch v2] Mesa: Add support for GL_OES_texture_*float* extensions.

2014-11-27 Thread kalyan kondapally
: > On Thursday 27 November 2014, Kalyan Kondapally wrote: >> This patch adds support for following GLES2 Texture Float extensions: >> 1)GL_OES_texture_float, >> 2)GL_OES_texture_half_float, >> 3)GL_OES_texture_float_linear, >> 4)GL_OES_texture_half_float_linear. >&

Re: [Mesa-dev] [PATCH] Add support for Texture Float extensions.

2014-11-27 Thread kalyan kondapally
Brian Paul wrote: > The subject line of the patch should be something like "mesa: add support > for GL_OES_texture_*float* extensions" > > A bunch of other nitpicks below... > > > > On 11/26/2014 06:55 AM, Kalyan Kondapally wrote: >> >> This patch adds s

[Mesa-dev] [Patch v2] Mesa: Add support for GL_OES_texture_*float* extensions.

2014-11-27 Thread Kalyan Kondapally
return GLenum. (Brain Paul) Use RGB_32F internal floating point format for RGB base format. Signed-off-by: Kevin Rogovin Signed-off-by: Kalyan Kondapally --- src/mesa/drivers/dri/i965/intel_extensions.c | 6 +++ src/mesa/main/extensions.c | 4 ++ src/mesa/main/glformats.c

[Mesa-dev] [PATCH] Add support for Texture Float extensions.

2014-11-26 Thread Kalyan Kondapally
i965 drivers. Signed-off-by: Kevin Rogovin Signed-off-by: Kalyan Kondapally --- src/mesa/drivers/dri/i965/intel_extensions.c | 6 +++ src/mesa/main/extensions.c | 4 ++ src/mesa/main/glformats.c| 48 +++--- src/mesa/main/glformats.h

[Mesa-dev] [PATCH] Add support for GLES2 Texture Float extensions.

2014-11-26 Thread Kalyan Kondapally
On/Off different float extensions. 2)Add support to check filter and texture completeness. Kalyan Kondapally (1): Add support for Texture Float extensions. src/mesa/drivers/dri/i965/intel_extensions.c | 6 +++ src/mesa/main/extensions.c | 4 ++ src/mesa/main/glformats.c

Re: [Mesa-dev] [PATCH] Add support for following Texture Float extensions: 1)GL_OES_texture_float, 2)GL_OES_texture_half_float, 3)GL_OES_texture_float_linear, 4)GL_OES_texture_half_float_linear.

2014-11-26 Thread kalyan kondapally
Hi, Please ignore this patch. Will re-send with the commit message fixed. Thanks, Kalyan On Wed, Nov 26, 2014 at 5:31 AM, Kalyan Kondapally wrote: > Support for these extensions need to be explicitly enabled per driver > and this patch enables support for i965 drivers. > > Signed-o

[Mesa-dev] [PATCH] Add support for following Texture Float extensions.

2014-11-26 Thread Kalyan Kondapally
On/Off different float extensions. 2)Add support to check filter and texture completeness. Kalyan Kondapally (1): Add support for following Texture Float extensions: 1)GL_OES_texture_float, 2)GL_OES_texture_half_float, 3)GL_OES_texture_float_linear, 4

[Mesa-dev] [PATCH] Add support for following Texture Float extensions: 1)GL_OES_texture_float, 2)GL_OES_texture_half_float, 3)GL_OES_texture_float_linear, 4)GL_OES_texture_half_float_linear.

2014-11-26 Thread Kalyan Kondapally
Support for these extensions need to be explicitly enabled per driver and this patch enables support for i965 drivers. Signed-off-by: Kevin Rogovin Signed-off-by: Kalyan Kondapally --- src/mesa/drivers/dri/i965/intel_extensions.c | 6 +++ src/mesa/main/extensions.c | 4

Re: [Mesa-dev] Immutable textures and BGRA external format support

2014-11-22 Thread kalyan kondapally
a should resolve this or any other ideas? Thanks, Kalyan On Sat, Nov 22, 2014 at 10:33 PM, kalyan kondapally wrote: > Hi, > > I am looking at Immutable textures usage with image data of BGRA > format. According to Texture storage extension spec [1] if either > EXT_texture_format_BG

[Mesa-dev] Immutable textures and BGRA external format support

2014-11-22 Thread kalyan kondapally
Hi, I am looking at Immutable textures usage with image data of BGRA format. According to Texture storage extension spec [1] if either EXT_texture_format_BGRA or APPLE_texture_format_BGRA are supported, glTexStorage2DEXT must accept BGRA8_EXT as internal format. EXT_texture_format_BGRA

Re: [Mesa-dev] [PATCH] i965: Fix segfault in WebGL Conformance on Ivybridge

2014-11-10 Thread kalyan kondapally
The patch seems to fix the crash I used to see while running this WebGL conformance test on my machine (Intel(R) Core(TM) i7-4600U CPU @ 2.10GHz). and now I can see all the tests pass. I believe 78770 is a different issue (Added my comments to 78770) and not actually dealing with fixing the crash w

[Mesa-dev] [PATCH] Releasing a surfaceless EGL context doesn't release underlying DRI context.

2014-10-24 Thread Kalyan Kondapally
validity checks fixes things. Signed-off-by: Alexandros Frantzis Signed-off-by: Kalyan Kondapally Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=74563 --- src/mesa/drivers/dri/common/dri_util.c | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/mesa/drivers/dri

[Mesa-dev] [PATCH] Allow texture2DProjLod and textureCubeLod with Gles.

2014-09-26 Thread Kalyan Kondapally
According to GLES (i.e. 1.0 and above) spec textureCubeLod and texture2DProjLod are built in functions. We seem to disable support for these functions with GLES. This patch enables the support. Signed-off-by: Kalyan Kondapally Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=84355 --- src

Re: [Mesa-dev] [PATCH] glsl: Structures must have same name to be considered same type.

2014-09-25 Thread kalyan kondapally
On Wed, Sep 24, 2014 at 11:45 AM, Anuj Phogat wrote: > On Mon, Sep 22, 2014 at 5:11 AM, Tapani Pälli wrote: >> From: Kalyan Kondapally >> >> According to GLSL(4.2) and GLSL-ES (1.0, 3.0) spec, Structures must >> have the same name to be considered same type. We c

Re: [Mesa-dev] [PATCH] glsl: Structures must have same name to be considered same type.

2014-09-24 Thread kalyan kondapally
On Wed, Sep 24, 2014 at 11:56 AM, Matt Turner wrote: > On Mon, Sep 22, 2014 at 5:11 AM, Tapani Pälli wrote: > > From: Kalyan Kondapally > > > > According to GLSL(4.2) and GLSL-ES (1.0, 3.0) spec, Structures must > > have the same name to be considered same type. We cu

[Mesa-dev] [PATCH] Generate a warning when not writing gl_Position with GLES.

2014-09-10 Thread Kalyan Kondapally
With GLES we don't give any kind of warning in case we don't write to gl_position. This patch makes changes so that we generate a warning in case of GLES (VER < 300) and an error in case of GL. Signed-off-by: Kalyan Kondapally --- src/glsl/linker.cpp | 11 +-- 1 fi