Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
A Complete Solution For Graphics Programming In Ruby.
Currently supports Windows and MacOSX out of the box.
gem install rubygl
Q: Why are my shaders not working?
A: You probably have an older version of GLSL (1.2 or earler) so your version of GLSL may not support the in
and out
variables (the shaders in ShaderGenerator use these). To work around this, you can change the in
qualifiers in the
vertex shader to attribute
qualifiers and the out
qualifiers to varying
qualifiers. In the fragment
shader change the in
qualifiers to varying
qualifiers and remove any out
variables; you should use the
built-in gl_FragColor
variable to assign the output fragment color. Lastly, make sure to update the #version XXX
tag for the version of GLSL your GPU can support (Ex: #version 120
if running GLSL 1.2). You can check your
GLSL version by running puts RubyGL::Native::glGetString(RubyGL::Native::GL_SHADING_LANGUAGE_VERSION)
.
Q: Why is my program giving a segmentation fault?
A: You are most likely trying to call an OpenGL function that does not exist in your GPUs version of OpenGL. The offending
function should be given to you in the stack trace. I have compiled the rubygl shared library for the latest version of OpenGL
in compatibility mode to let users call any function that their version of OpenGL may support; the library will assume
that any OpenGL function you are calling is valid (I should probably change this), hence the segmentation fault. Go to
https://www.opengl.org/sdk/docs/man/ to see which functions are supported by each OpenGL version. You can run
puts RubyGL::Native::glGetString(RubyGL::Native::GL_VERSION)
to see what version of OpenGL you have.
FAQs
Unknown package
We found that rubygl demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.