From 20a17e42d7fc9fe65aabe612fe1e513c3103d121 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Wed, 21 Jan 2004 16:08:43 +0000 Subject: Remove dd_function_table::BlendFunc. All drivers now use dd_function_table:BlendFuncSeparate. If a driver does not actually support EXT_blend_func_separate, it can assume that the RGB and alpha blend functions are the same. --- src/mesa/main/dd.h | 1 - 1 file changed, 1 deletion(-) (limited to 'src/mesa/main/dd.h') diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 60b16db10f..5538377374 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -580,7 +580,6 @@ struct dd_function_table { /** Set the blend equation */ void (*BlendEquation)(GLcontext *ctx, GLenum mode); /** Specify pixel arithmetic */ - void (*BlendFunc)(GLcontext *ctx, GLenum sfactor, GLenum dfactor); void (*BlendFuncSeparate)(GLcontext *ctx, GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorA, GLenum dfactorA); -- cgit v1.2.3