[Mesa-dev] [PATCH 01/23] i965: remove brw_new_shader, it's the same as the core Mesa version
Kenneth Graunke
kenneth at whitecape.org
Sun Sep 27 17:56:44 PDT 2015
On Monday, September 28, 2015 12:20:30 AM Marek Olšák wrote:
> From: Marek Olšák <marek.olsak at amd.com>
>
> ---
> src/mesa/drivers/dri/i965/brw_program.c | 1 -
> src/mesa/drivers/dri/i965/brw_shader.cpp | 16 ----------------
> src/mesa/drivers/dri/i965/brw_wm.h | 1 -
> 3 files changed, 18 deletions(-)
>
> diff --git a/src/mesa/drivers/dri/i965/brw_program.c b/src/mesa/drivers/dri/i965/brw_program.c
> index 1ac0ed2..a43d473 100644
> --- a/src/mesa/drivers/dri/i965/brw_program.c
> +++ b/src/mesa/drivers/dri/i965/brw_program.c
> @@ -282,7 +282,6 @@ void brwInitFragProgFuncs( struct dd_function_table *functions )
> functions->DeleteProgram = brwDeleteProgram;
> functions->ProgramStringNotify = brwProgramStringNotify;
>
> - functions->NewShader = brw_new_shader;
> functions->LinkShader = brw_link_shader;
>
> functions->MemoryBarrier = brw_memory_barrier;
> diff --git a/src/mesa/drivers/dri/i965/brw_shader.cpp b/src/mesa/drivers/dri/i965/brw_shader.cpp
> index 785cb27..3ff4fad 100644
> --- a/src/mesa/drivers/dri/i965/brw_shader.cpp
> +++ b/src/mesa/drivers/dri/i965/brw_shader.cpp
> @@ -147,22 +147,6 @@ brw_compiler_create(void *mem_ctx, const struct brw_device_info *devinfo)
> return compiler;
> }
>
> -struct gl_shader *
> -brw_new_shader(struct gl_context *ctx, GLuint name, GLuint type)
> -{
> - struct brw_shader *shader;
> -
> - shader = rzalloc(NULL, struct brw_shader);
This isn't the same as the core Mesa version - it allocates a
brw_shader, which actually has an additional field over gl_shader.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: This is a digitally signed message part.
URL: <http://lists.freedesktop.org/archives/mesa-dev/attachments/20150927/47506ff6/attachment.sig>
More information about the mesa-dev
mailing list