- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
public static void create(String title, int width, int height) {
if (isWindowCreated())
throw new RuntimeException("Window created.");
if (title == null)
throw new NullPointerException("Window title == null.");
if (width <= 0 || height <= 0)
throw new IllegalArgumentException("Window size <= 0.");
if ((window = GLFW.glfwCreateWindow(width, height, title, MemoryUtil.NULL, MemoryUtil.NULL)) == MemoryUtil.NULL)
throw new RuntimeException("Failed to create the GLFW window.");
}
Dummy00001 20.12.2014 15:00 # +2
Pythoner 20.12.2014 20:53 # +1
wvxvw 20.12.2014 21:31 # +1
bormand 20.12.2014 21:49 # 0
wvxvw 20.12.2014 22:33 # 0
guest 21.12.2014 08:41 # −1
guest 23.12.2014 20:03 # +1
kipar 20.12.2014 22:34 # 0
обертка кроссплатформенной glfw. Правда исключений она, насколько я знаю, действительно не кидает.
Pythoner 21.12.2014 01:40 # 0
А как бы она смогла - она же на C написана.