Skip to content

Commit

Permalink
add glBindRenderbufferEXT to half_aliases
Browse files Browse the repository at this point in the history
it seems like this was forgotten,
because glBindFramebufferEXT is already there
for the same reason
  • Loading branch information
Simon Parzer committed Nov 3, 2015
1 parent c976864 commit 4509aaf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/gen_dispatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,8 @@ def write_function_ptr_resolver(self, func):
'glBindVertexArrayAPPLE' : 'glBindVertexArray',
'glBindFramebuffer' : 'glBindFramebufferEXT',
'glBindFramebufferEXT' : 'glBindFramebuffer',
'glBindRenderbuffer' : 'glBindRenderbufferEXT',
'glBindRenderbufferEXT' : 'glBindRenderbuffer',
}
if func.name in half_aliases:
alias_func = self.functions[half_aliases[func.name]]
Expand Down

0 comments on commit 4509aaf

Please sign in to comment.