Re: [Mesa-dev] [PATCH 01/11] i965: Fix ctx->Texture.CubeMapSeamless

2015-02-10 Thread Iago Toral
On Tue, 2015-02-10 at 09:33 -0800, Ian Romanick wrote: > On 02/10/2015 07:40 AM, Eduardo Lima Mitev wrote: > > From: Iago Toral Quiroga > > > > The intel driver code, and apparently all other Mesa drivers, call > > _mesa_initialize_context early in the CreateContext hook. That > > function will e

Re: [Mesa-dev] [PATCH 01/11] i965: Fix ctx->Texture.CubeMapSeamless

2015-02-10 Thread Ian Romanick
On 02/10/2015 07:40 AM, Eduardo Lima Mitev wrote: > From: Iago Toral Quiroga > > The intel driver code, and apparently all other Mesa drivers, call > _mesa_initialize_context early in the CreateContext hook. That > function will end up calling _mesa_init_texture which will do: > > ctx->Texture.C

[Mesa-dev] [PATCH 01/11] i965: Fix ctx->Texture.CubeMapSeamless

2015-02-10 Thread Eduardo Lima Mitev
From: Iago Toral Quiroga The intel driver code, and apparently all other Mesa drivers, call _mesa_initialize_context early in the CreateContext hook. That function will end up calling _mesa_init_texture which will do: ctx->Texture.CubeMapSeamless = _mesa_is_gles3(ctx); But this won't work at th