flyx / OpenGLAda

Thick Ada binding for OpenGL and GLFW
flyx.github.io/OpenGLAda/
MIT License
96 stars 13 forks source link

String example extensions #100

Closed rogermc2 closed 7 years ago

rogermc2 commented 7 years ago

Example using GL.Text Common made into library.

rogermc2 commented 7 years ago

Thanks Flyx. This marks a milestone for me on my OpenGL experience. However, I'm wondering about the use of this develop branch. At first I didn't relalize and merged upstream/master which of course caused problems. When I merged upstream/master things seem to have recovered.

rogermc2 commented 7 years ago

There were problems due to removal of opengl shared. I have submitted a separate PR to fix those.

flyx commented 7 years ago

Sorry for not dropping you a note about the switch to the develop branch. Having master containing only stable commits (i.e. releases) is good practice for any project that has multiple contributors, so I decided to create a develop branch after the latest release. You should now base any pull requests on the develop branch.

rogermc2 commented 7 years ago

You did mention that you intended to use a develop branch. Does this mean that I should create new branches using git checkout -b <new branch> upstream develop?

flyx commented 7 years ago

I believe the correct syntax is git checkout -b <new branch> upstream/develop but yes.

rogermc2 commented 7 years ago

That's what I meant. Typo. Sorry and thanks.