diff options
author | Timothy Arceri <[email protected]> | 2018-04-14 13:42:31 +1000 |
---|---|---|
committer | Timothy Arceri <[email protected]> | 2018-04-17 14:17:48 +1000 |
commit | d3cafc18fced872ce60060e792f6faf2b97cc3a9 (patch) | |
tree | bf6b30b84fdaeab6feb8246505bd684f759717d7 /src/mesa/main/dd.h | |
parent | 268d8f244b3450461de5448f3f9a2ed2aa05e223 (diff) |
mesa: merge the driver functions DrawBuffers and DrawBuffer
The extra params we unused by the drivers that used DrawBuffers.
Tested-by: Dieter Nützel <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Diffstat (limited to 'src/mesa/main/dd.h')
-rw-r--r-- | src/mesa/main/dd.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/mesa/main/dd.h b/src/mesa/main/dd.h index 64ddd818835..d85d89ef50c 100644 --- a/src/mesa/main/dd.h +++ b/src/mesa/main/dd.h @@ -612,8 +612,6 @@ struct dd_function_table { void (*DepthRange)(struct gl_context *ctx); /** Specify the current buffer for writing */ void (*DrawBuffer)( struct gl_context *ctx, GLenum buffer ); - /** Specify the buffers for writing for fragment programs*/ - void (*DrawBuffers)(struct gl_context *ctx, GLsizei n, const GLenum *buffers); /** Enable or disable server-side gl capabilities */ void (*Enable)(struct gl_context *ctx, GLenum cap, GLboolean state); /** Specify fog parameters */ |