Skip to content

Commit

Permalink
Added glProvokingVertex to GL_ARB_provoking_vertex
Browse files Browse the repository at this point in the history
Also this
  • Loading branch information
IceRiseDE committed Sep 16, 2021
1 parent 65c3322 commit 6ae9f50
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/bindbc/opengl/bind/arb/core_32.d
Original file line number Diff line number Diff line change
Expand Up @@ -241,10 +241,10 @@ bool loadARB32(SharedLib lib, GLSupport contextVersion)
static if(has32) {
if(contextVersion >= GLSupport.gl32) {
_hasARBDepthClamp = true;
_hasARBProvokingVertex = true;
_hasARBSeamlessCubeMap = true;

bool ret = true;
ret = _hasARBProvokingVertex = lib.loadARBProvokingVertex(contextVersion);
ret = _hasARBDrawElementsBaseVertex = lib.loadARBDrawElementsBaseVertex(contextVersion);
ret = _hasARBSync = lib.loadARBSync(contextVersion);
ret = _hasARBTextureMultiSample = lib.loadTextureMultiSample(contextVersion);
Expand Down

0 comments on commit 6ae9f50

Please sign in to comment.