Browse Source

* Merging revisions r45796 from trunk:
------------------------------------------------------------------------
r45796 | michael | 2020-07-16 09:48:25 +0200 (Thu, 16 Jul 2020) | 1 line

* Fix bug ID #37368: incorrect chaining of loading versions >1.2
------------------------------------------------------------------------

git-svn-id: branches/fixes_3_2@46597 -

michael 5 years ago
parent
commit
9f24c73119
1 changed files with 1 additions and 0 deletions
  1. 1 0
      packages/opengl/src/glext.pp

+ 1 - 0
packages/opengl/src/glext.pp

@@ -5393,6 +5393,7 @@ begin
   if not Assigned(glCompressedTexSubImage1D) then allOK := false;
   glGetCompressedTexImage := wglGetProcAddress('glGetCompressedTexImage');
   if not Assigned(glGetCompressedTexImage) then allOK := false;
+  Load_GL_version_1_2x(allOK);
 end;
 
 function Load_GL_version_1_3: boolean;