diff options
author | Brian Paul <[email protected]> | 2004-03-04 17:14:08 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2004-03-04 17:14:08 +0000 |
commit | 9b71f621d1e242c798c90062e06c49221f34c2b1 (patch) | |
tree | e1e00ad010102b7b86fde648e88d9558c0b3736f /src/mesa/main | |
parent | d5e4f29cb9ef5af7214887e84fb31f27fbfe1100 (diff) |
plug in _mesa_BlendFunc into dispatch table
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/dlist.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c index b9b96d0fb76..3c7fe9c47da 100644 --- a/src/mesa/main/dlist.c +++ b/src/mesa/main/dlist.c @@ -7008,6 +7008,7 @@ _mesa_init_dlist_table( struct _glapi_table *table, GLuint tableSize ) table->Accum = save_Accum; table->AlphaFunc = save_AlphaFunc; table->Bitmap = save_Bitmap; + table->BlendFunc = _mesa_BlendFunc; /* loops-back to BlendFuncSeparate */ table->CallList = _mesa_save_CallList; table->CallLists = _mesa_save_CallLists; table->Clear = save_Clear; |