gogl icon indicating copy to clipboard operation
gogl copied to clipboard

OpenGL binding generator for Go

Results 9 gogl issues
Sort by recently updated
recently updated
newest added

It seem that you may need to update the OpenGL specification website: ``` shell >> make bindings ... ... WARNING: Unable to parse line: 'window.NREUM||(NREUM={});NREUM.info={"beacon":"beacon-4.newrelic.com","queueTime":0,"licenseKey":"a2cef8c3d3","agent":"js-agent.newrelic.com/nr-476.min.js","transactionName":"Z11RZxdWW0cEVkYLDV4XdUYLVEFdClsdAAtEWkZQDlJBGgRFQhFMVUpBXBdEG0IMUEURWFhZXVcJUkcAVQE=","userAttributes":"SxpaQDpWQEANUFwWC1NZR1YBFQ9SBFlBB04SUUBsBEdcFl9TUw4RVRQRRhZSR2sLVF8HQAoacl0KWUxZCkBBQB8=","applicationID":"1841284","errorBeacon":"bam.nr-data.net","applicationTime":56}' (Ignoring) WARNING: Unable to parse...

In commit 99c9a42 I meant to reference issue #35 (not 31)

When running `make bindings` it was giving the error: ``` can't load package: package github.com/chsc/gogl/gl31: cannot find package "github.com/chsc/gogl/gl31" in any of: /usr/local/go/src/pkg/github.com/chsc/gogl/gl31 (from $GOROOT) /Users/tl/Development/gocode/src/github.com/chsc/gogl/gl31 (from $GOPATH) ``` Commenting...

I encountered a problem while using the the gl bindings. I used GetString and could not figure out how to properly make a string out of it. http://stackoverflow.com/questions/21370390/read-a-c-type-string-from-go The answerer...

Please add OpenGL 4.4 spec as this has now been released:

Specifically I wanted to try streaming texture transfers as described here: http://ogltotd.blogspot.com/2006/12/streaming-texture-updates.html I don't get any GL errors with implementing that, but also no pixel transfer seems to happen (black...

... of course, only if the version-related error returned by gl42.Init() is ignored _and_ if no GL functions are called that the current run-time client GL version doesn't yet support....

The generator attempts to generate a return when the function has no return type. For example the following code is generated for DeleteBufferRegionARB which has no return type. func DeleteBufferRegionARB(hRegion...

Hey, I have a laptop with a HD3000 Intel GPU and a discrete AMD GPU both with recent drivers. AMD supports OpenGL 4.1 and Intel 3.1. OS: Windows 7 64bit...