1
これを実行すると、ウィンドウがポップアップして表示されます。 (When I run the game, I see this)LWJGL 3:OpenGLクワッドのランダム(0,0)ポイント
これは、あなたはね
package net.nathanthesnooper.timetraveller;
import static org.lwjgl.glfw.GLFW.*;
import static org.lwjgl.opengl.GL11.*;
import org.lwjgl.opengl.GL;
public class Game {
public static void main (String[] args) {
if(glfwInit() != true) {
System.err.println("GLFW Failed to initialize!");
System.exit(1);
}
long window = glfwCreateWindow(640,480,"Game", 0, 0);
glfwShowWindow(window);
glfwMakeContextCurrent(window);
GL.createCapabilities();
while(!glfwWindowShouldClose(window)) {
glfwPollEvents();
glClear(GL_COLOR_BUFFER_BIT);
glBegin(GL_QUADS);
glVertex2d(-0.5,0.5);
glVertex2d(0.5,0.5);
glVertex2d(-0.5,-0.5);
glVertex2d(0.5,-0.5);
glEnd();
glfwSwapBuffers(window);
}
glfwTerminate();
}
}
ありがとうございました。私はそれが自動的に解決するだろうと思っていたと思う:) – nathanthesnooper