Giter Site home page Giter Site logo

Comments (2)

tapir avatar tapir commented on June 13, 2024

From opengl wiki:

GLEW has a problem with core contexts. It calls glGetString(GL_EXTENSIONS)​, which causes GL_INVALID_ENUM​ on GL 3.2+ core context as soon as glewInit()​ is called. It also doesn't fetch the function pointers. The solution is for GLEW to use glGetStringi​ instead. The current version of GLEW is 1.10.0 but they still haven't corrected it. The only fix is to use glewExperimental​ for now:

So what happens is that when you don't specify the version, glfw3 set's the opengl profile to glfw.OpenglAnyProfile which doesn't cause a problem for glew. But If you request version 3.3, it explicitly asks for a core profile which triggers above issue with glew.

As far as I see, it's not a problem. But don't forget that glfw.WindowHint is afterall a hint. You're not guaranteed to get what you ask for. So you should always check if you've got the correct context with glfw.GetWindowAttribute(glfw.ContextVersionMajor) and glfw.GetWindowAttribute(glfw.ContextVersionMinor)

Edit: I should have added that glew is used by go-gl/gl.

from glfw.

Niriel avatar Niriel commented on June 13, 2024

Good to know, thank you!

from glfw.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.