2
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
456 B
Java

package net.minecraft.client.renderer;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import org.lwjgl.opengl.GLContext;
@SideOnly(Side.CLIENT)
public class OpenGlCapsChecker
{
private static final String __OBFID = "CL_00000649";
/**
* Checks if we support OpenGL occlusion.
*/
public static boolean checkARBOcclusion()
{
return GLContext.getCapabilities().GL_ARB_occlusion_query;
}
}