Skip to content

Commit

Permalink
use https:// for links to opengl-tutorial.org
Browse files Browse the repository at this point in the history
  • Loading branch information
1ace committed Jul 20, 2020
1 parent 262dc43 commit 8f69601
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions opengl.py
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
},
'opengl-tutorial.org vao': {
'name': 'opengl-tutorial.org - Tutorial 2 : The first triangle',
'link': 'http://www.opengl-tutorial.org/beginners-tutorials/tutorial-2-the-first-triangle/',
'link': 'https://www.opengl-tutorial.org/beginners-tutorials/tutorial-2-the-first-triangle/',
'versions': [ 'gl3', 'gl4', 'es2', 'es3' ],
'commands': ['glGenVertexArrays', 'glBindVertexArray', 'glGenBuffers',
'glBindBuffer', 'glBufferData', 'glEnableVertexAttribArray', 'glVertexAttribPointer',
Expand All @@ -207,54 +207,54 @@
},
'opengl-tutorial.org matrices': {
'name': 'opengl-tutorial.org - Tutorial 3 : Matrices',
'link': 'http://www.opengl-tutorial.org/beginners-tutorials/tutorial-3-matrices/',
'link': 'https://www.opengl-tutorial.org/beginners-tutorials/tutorial-3-matrices/',
'versions': [ 'gl3', 'gl4', 'es2', 'es3' ],
'commands': ['glUniform'],
},
'opengl-tutorial.org colored cube': {
'name': 'opengl-tutorial.org - Tutorial 4 : A Colored Cube',
'link': 'http://www.opengl-tutorial.org/beginners-tutorials/tutorial-4-a-colored-cube/',
'link': 'https://www.opengl-tutorial.org/beginners-tutorials/tutorial-4-a-colored-cube/',
'versions': [ 'gl3', 'gl4', 'es2', 'es3' ],
'commands': ['glDrawArrays', 'glGenBuffers', 'glBindBuffer', 'glBufferData',
'glEnableVertexAttribArray', 'glVertexAttribPointer', 'glEnable', 'glDepthFunc', 'glClear'],
},
'opengl-tutorial.org textured cube': {
'name': 'opengl-tutorial.org - Tutorial 5 : A Textured Cube',
'link': 'http://www.opengl-tutorial.org/beginners-tutorials/tutorial-5-a-textured-cube/',
'link': 'https://www.opengl-tutorial.org/beginners-tutorials/tutorial-5-a-textured-cube/',
'versions': [ 'gl3', 'gl4', 'es2', 'es3' ],
'commands': ['glGenTextures', 'glBindTexture', 'glTexImage2D', 'glTexParameter',
'glGenerateMipmap', 'glCompressedTexImage2D', 'glEnable', 'glDepthFunc', 'glClear'],
},
'opengl-tutorial.org model loading': {
'name': 'opengl-tutorial.org - Tutorial 7 : Model loading',
'link': 'http://www.opengl-tutorial.org/beginners-tutorials/tutorial-7-model-loading/',
'link': 'https://www.opengl-tutorial.org/beginners-tutorials/tutorial-7-model-loading/',
'versions': [ 'gl3', 'gl4', 'es2', 'es3' ],
'commands': ['glBufferData'],
},
'opengl-tutorial.org basic shading': {
'name': 'opengl-tutorial.org - Tutorial 8 : Basic shading',
'link': 'http://www.opengl-tutorial.org/beginners-tutorials/tutorial-8-basic-shading/',
'link': 'https://www.opengl-tutorial.org/beginners-tutorials/tutorial-8-basic-shading/',
'versions': [ 'gl3', 'gl4', 'es2', 'es3' ],
'commands': ['glGenBuffers', 'glBindBuffer', 'glBufferData', 'glEnableVertexAttribArray',
'glVertexAttribPointer'],
},
'opengl-tutorial.org transparency': {
'name': 'opengl-tutorial.org - Tutorial 10 : Transparency',
'link': 'http://www.opengl-tutorial.org/intermediate-tutorials/tutorial-10-transparency/',
'link': 'https://www.opengl-tutorial.org/intermediate-tutorials/tutorial-10-transparency/',
'versions': [ 'gl3', 'gl4', 'es2', 'es3' ],
'commands': ['glEnable', 'glBlendFunc'],
},
'opengl-tutorial.org normal mapping': {
'name': 'opengl-tutorial.org - Tutorial 13 : Normal Mapping',
'link': 'http://www.opengl-tutorial.org/intermediate-tutorials/tutorial-13-normal-mapping/',
'link': 'https://www.opengl-tutorial.org/intermediate-tutorials/tutorial-13-normal-mapping/',
'versions': [ 'gl3', 'gl4', 'es2', 'es3' ],
'commands': ['glGenBuffers', 'glBindBuffer', 'glBufferData', 'glGetUniformLocation',
'glUniform', 'glActiveTexture', 'glBindTexture', 'glEnableVertexAttribArray',
'glVertexAttribPointer', 'glDrawElements'],
},
'opengl-tutorial.org rtt': {
'name': 'opengl-tutorial.org - Tutorial 14 : Render To Texture',
'link': 'http://www.opengl-tutorial.org/intermediate-tutorials/tutorial-14-render-to-texture/',
'link': 'https://www.opengl-tutorial.org/intermediate-tutorials/tutorial-14-render-to-texture/',
'versions': [ 'gl3', 'gl4', 'es2', 'es3' ],
'commands': ['glGenFramebuffers', 'glBindFramebuffer', 'glGenTextures', 'glBindTexture',
'glTexImage2D', 'glTexParameter', 'glGenRenderbuffers', 'glBindRenderbuffer',
Expand All @@ -264,15 +264,15 @@
},
'opengl-tutorial.org shadow mapping': {
'name': 'opengl-tutorial.org - Tutorial 16 : Shadow mapping',
'link': 'http://www.opengl-tutorial.org/intermediate-tutorials/tutorial-16-shadow-mapping/',
'link': 'https://www.opengl-tutorial.org/intermediate-tutorials/tutorial-16-shadow-mapping/',
'versions': [ 'gl3', 'gl4', 'es2', 'es3' ],
'commands': ['glGenFramebuffers', 'glBindFramebuffer', 'glGenTextures', 'glBindTexture',
'glTexImage2D', 'glTexParameter', 'glFramebufferTexture', 'glDrawBuffer',
'glCheckFramebufferStatus', 'glUniform'],
},
'opengl-tutorial.org particles': {
'name': 'opengl-tutorial.org - Particles / Instancing',
'link': 'http://www.opengl-tutorial.org/intermediate-tutorials/billboards-particles/particles-instancing/',
'link': 'https://www.opengl-tutorial.org/intermediate-tutorials/billboards-particles/particles-instancing/',
'versions': [ 'gl3', 'gl4', 'es2', 'es3' ],
'commands': ['glGenBuffers', 'glBindBuffer', 'glBufferData', 'glBufferSubData',
'glEnableVertexAttribArray', 'glVertexAttribPointer', 'glDrawArraysInstanced',
Expand Down

0 comments on commit 8f69601

Please sign in to comment.