-
-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Doesn't seem to work on VMWare #10
Comments
Try looking at the |
The following gives the same error with the last part changed to "(legacy? = #t)": Also, the docs says wrt I'm just guessing, but it seems to me that the VMWare SVGA3D driver maybe only supports the Forward Compatibility Context modes (with deprecated features removed), and pict3d tries to acquire a "normal" context and there is none for the 3.0+ versions, at least according to OpenGL Extension Viewer. But I'm not familiar with the OpenGL Extension Viewer so I don't know what it should report in a "normal" case. Is there an easy way to enumerate all the available contexts? Does pict3d simply request a specific type of context or does it get a list a pick one itself, that piece of code might be a useful place to either request a forward context or print out the list? Or something else I could try? As an aside, any idea why google finds pict3d in the racket-lang.org site, but it's not available there anymore, the google cached version does work however: |
This is the code that is running: I don't have any access to something to test what you're seeing. |
I tried to following simple example:
#lang racket
(require pict3d)
(sphere origin 1/2)
And I get error message: "get-master-gl-context: could not get at least an OpenGL 30 context (legacy? = #f)"
Googling for the error I found:
https://lists.racket-lang.org/users/archive/2015-March/066309.html
It suggests running OpenGL Extension Viewer, which I ran and it reported OpenGL 3.3 as supported, which VMWare is supposed to support, but pict3d doesn't seem to work. I'm not an expert on OpenGL, but one thing I did notice on the OpenGL Extension Viewer app is that when I run the tests it first asks to choose OpenGL context which has five options:
Only the last three allowed OpenGL 3.x tests to be run. So maybe pict3d picks one of the first two?
I'm not sure where in the pict3d code to even start looking for the issue..
edit. updated the code tags...
The text was updated successfully, but these errors were encountered: