本文整理汇总了Java中com.jogamp.opengl.GL2.glGetString方法的典型用法代码示例。如果您正苦于以下问题:Java GL2.glGetString方法的具体用法?Java GL2.glGetString怎么用?Java GL2.glGetString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.jogamp.opengl.GL2
的用法示例。
在下文中一共展示了GL2.glGetString方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: checkBlend
import com.jogamp.opengl.GL2; //导入方法依赖的package包/类
/** Convenience method to check if blending in OpenGL is available, and if so, to turn it on.
*
* @param gl the GL2 context
*/
protected void checkBlend(GL2 gl) {
if (!hasBlendChecked) {
hasBlendChecked = true;
String glExt = gl.glGetString(GL.GL_EXTENSIONS);
if (glExt.indexOf("GL_EXT_blend_color") != -1) {
hasBlend = true;
}
}
if (hasBlend) {
try {
gl.glEnable(GL.GL_BLEND);
gl.glBlendFunc(GL.GL_ONE, GL.GL_ONE);
gl.glBlendEquation(GL.GL_FUNC_ADD);
} catch (GLException e) {
log.warning("tried to use glBlend which is supposed to be available but got following exception");
gl.glDisable(GL.GL_BLEND);
e.printStackTrace();
hasBlend = false;
}
}
}