Available Methods
- GLFW_KEY_ESCAPE
- GLFW_KEY_ENTER
- GLFW_KEY_RIGHT_SHIFT
- GLFW_KEY_U
- glfwInit ( )
- glfwSetWindowSize ( )
- GLFW_KEY_DELETE
- GLFW_KEY_N
- glfwSetScrollCallback ( )
- glfwWindowShouldClose ( )
- GLFW_KEY_I
- GLFW_KEY_C
- glfwSetKeyCallback ( )
- GLFW_KEY_KP_5 ( )
- glfwSwapBuffers ( )
- glfwGetMouseButton ( )
- GLFW_KEY_LEFT
- GLFW_KEY_2 ( )
- GLFW_KEY_P
- glfwGetKeyName ( )
- GLFW_KEY_LEFT_ALT
- GLFW_KEY_F2 ( )
- GLFW_KEY_G
- glfwSetCursorPosCallback ( )
- GLFW_KEY_KP_ENTER
- glfwSetWindowIconifyCallback ( )
- glfwGetWindowSize ( )
- GLFW_KEY_F3 ( )
- glfwSetWindowPos ( )
- GLFW_KEY_UP
- glfwSetDropCallback ( )
- glfwDestroyCursor ( )
Related Classes
- java.io.File
- java.util.regex.Pattern
- java.util.regex.Matcher
- java.lang.reflect.Field
- java.util.function.Consumer
- org.lwjgl.opengl.GL11
- com.badlogic.gdx.Gdx
- net.minecraft.client.settings.KeyBinding
- com.badlogic.gdx.utils.GdxRuntimeException
- org.spongepowered.asm.mixin.injection.At
- net.minecraft.client.gui.screen.Screen
- org.spongepowered.asm.mixin.injection.Redirect
- org.lwjgl.opengl.GL
- net.minecraft.text.Text
- net.minecraft.client.MinecraftClient
- org.lwjgl.PointerBuffer
- org.lwjgl.glfw.GLFWKeyCallback
- org.lwjgl.glfw.GLFWCursorPosCallback
- net.minecraft.util.hit.BlockHitResult
- org.joml.Vector3f
- org.lwjgl.glfw.GLFWMouseButtonCallback
- net.fabricmc.api.EnvType
- com.badlogic.gdx.utils.SharedLibraryLoader
- net.fabricmc.api.Environment
- org.lwjgl.glfw.GLFWVidMode
Java Code Examples for org.lwjgl.glfw.GLFW#glfwDestroyCursor()
The following examples show how to use
org.lwjgl.glfw.GLFW#glfwDestroyCursor() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: Lwjgl3Mini2DxCursor.java From mini2Dx with Apache License 2.0 | 5 votes |
@Override public void dispose() { if (pixmapCopy == null) { throw new GdxRuntimeException("Cursor already disposed"); } cursors.removeValue(this, true); pixmapCopy.dispose(); pixmapCopy = null; glfwImage.free(); GLFW.glfwDestroyCursor(glfwCursor); }
Example 2
Source File: Lwjgl3Mini2DxCursor.java From mini2Dx with Apache License 2.0 | 4 votes |
static void disposeSystemCursors() { for (long systemCursor : systemCursors.values()) { GLFW.glfwDestroyCursor(systemCursor); } systemCursors.clear(); }