GL_VERSION_4_5 handling

Issue #1 resolved
Former user created an issue

this code is wrong: ...

    if MinorVersion >= 4 then
      GL_VERSION_4_4 := True;
    if MinorVersion >= 4 then
      GL_VERSION_4_5:= True;
  end;

please replace to this: ...

    if MinorVersion >= 4 then
      GL_VERSION_4_4 := True;
    if MinorVersion >= 5 then
      GL_VERSION_4_5:= True;
  end;

Comments (1)

  1. Log in to comment