haskell-opengl / OpenGL

Haskell bindings to OpenGL
http://www.haskell.org/haskellwiki/OpenGL
BSD 3-Clause "New" or "Revised" License
147 stars 26 forks source link

Binding for "Sampler Object" does not exist #57

Open znd-milktea opened 9 years ago

znd-milktea commented 9 years ago

I can't find binding for "Sampler Object" in the OpenGL package.

The following is in the OpenGLRaw package. glGenSamplers :: GLsizei -> Ptr GLuint -> IO () glDeleteSamplers :: GLsizei -> Ptr GLuint -> IO () glIsSampler :: GLuint -> IO GLboolean

I think that the binding in the OpenGL package is implemented as instance of GeneratableObjectName.