- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我将先发布代码,然后发布以下问题:
import java.util.Properties;
import org.lwjgl.Sys;
import org.lwjgl.input.Keyboard;
import org.lwjgl.input.Mouse;
import org.lwjgl.opengl.ContextAttribs;
import org.lwjgl.opengl.Display;
import org.lwjgl.opengl.DisplayMode;
import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.PixelFormat;
import ref.Reference;
import ref.Settings;
public class Main implements Runnable {
private static int width;
private static int height;
private long lastframe;
private int fps;
private long lastfps;
private float rotation = 0;
private float x = 400;
private float y = 300;
private boolean running = false;
private Thread thread;
private static Properties settings = new Properties();
public static void main(String[] args) {
Main game = new Main();
Settings.load();
settings = Settings.getSettings();
game.initDisplay();
game.initGL();
game.start();
}
public void run() {
System.out.println("Start");
getDelta();
lastfps = getTime();
while (!Display.isCloseRequested()) {
if (running) {
int delta = getDelta();
tick(delta);
Display.sync(60);
}
render();
updateFPS();
Display.update();
}
if (Display.isCloseRequested()) {
stop();
cleanup();
}
}
private void updateFPS() {
if (getTime() - lastfps > 1000) {
System.out.println("FPS: " + fps);
fps = 0;
lastfps += 1000;
}
fps++;
}
private void tick(int delta) {
System.out.println("Tick");
rotation += 0.15f * delta;
if (Keyboard.isKeyDown(Keyboard.KEY_LEFT)) x -= 0.35f * delta;
if (Keyboard.isKeyDown(Keyboard.KEY_RIGHT)) x += 0.35f * delta;
if (Keyboard.isKeyDown(Keyboard.KEY_UP)) y -= 0.35f * delta;
if (Keyboard.isKeyDown(Keyboard.KEY_DOWN)) y += 0.35f * delta;
if (x < 0) x = 0;
if (x > 800) x = 800;
if (y < 0) y = 0;
if (y > 600) y = 600;
}
private void render() {
System.out.println("Render");
GL11.glClear(GL11.GL_COLOR_BUFFER_BIT | GL11.GL_DEPTH_BUFFER_BIT);
GL11.glColor3f(0.5f, 0.5f, 1.0f);
GL11.glPushMatrix();
GL11.glTranslatef(x, y, 0);
GL11.glRotatef(rotation, 0f, 0f, 0f);
GL11.glBegin(GL11.GL_QUADS);
GL11.glVertex2f(x - 50, y - 50);
GL11.glVertex2f(x + 50, y - 50);
GL11.glVertex2f(x + 50, y + 50);
GL11.glVertex2f(x - 50, y + 50);
GL11.glEnd();
GL11.glPopMatrix();
}
private void cleanup() {
Mouse.destroy();
Keyboard.destroy();
Display.destroy();
}
public void initGL() {
System.out.println("initGL");
GL11.glClearColor(1.0f, 1.0f, 1.0f, 1.0f);
GL11.glMatrixMode(GL11.GL_PROJECTION);
GL11.glLoadIdentity();
GL11.glOrtho(0, 800, 0, 600, 1, -1);
GL11.glMatrixMode(GL11.GL_MODELVIEW);
}
public void initDisplay() {
System.out.println("initDisplay");
try {
width = Integer.parseInt(settings.getProperty("width"));
height = Integer.parseInt(settings.getProperty("height"));
Display.setDisplayMode(new DisplayMode(width, height));
Display.setTitle(Reference.WINDOWTITLE);
Display.create();
Keyboard.create();
Mouse.create();
} catch (Exception e) {
}
}
public void start() {
if (running) return;
running = true;
thread = new Thread(this, "Display");
thread.start();
}
public void stop() {
if (!running) return;
running = false;
try {
thread.join();
} catch (Exception e) {
}
}
private long getTime() {
return (Sys.getTime() * 1000) / Sys.getTimerResolution();
}
public int getDelta() {
long time = getTime();
int delta = (int) (time - lastframe);
lastframe = time;
return delta;
}
}
现在启动时出现错误:
initDisplay
initGL
Exception in thread "main" java.lang.IllegalStateException: Function is not supported
at org.lwjgl.BufferChecks.checkFunctionAddress(BufferChecks.java:58)
at org.lwjgl.opengl.GL11.glMatrixMode(GL11.java:2075)
at Main.initGL(Main.java:127)
at Main.main(Main.java:41)
这基本上是来自 LWJGL Wiki 的代码,我只是复制它以查看线程是否工作并遇到了这个。这对我来说是新事物,所以任何人都可以帮助并告诉我什么是不正确的吗?因为我不明白。
第 127 行是 initGL() 的第一行(我为此删除了空行,因此它不再是第 127 行,但这是发生错误的行):
GL11.glMatrixMode(GL11.GL_PROJECTION);
没有线程也能正常工作
最佳答案
OpenGL 调用(来自一个 GL 上下文)只能在一个线程上运行。您的代码在同一 GL 上下文中通过两个不同的线程运行 OpenGL 代码。在默认线程上运行 game.initDisplay()
和 game.initGL()
,并在您自己的新线程上运行剩余的 OpenGL 代码。您要么需要确保所有 OpenGL 调用都是从一个线程进行,要么研究上下文共享。我会选择单线程,直到这被证明是一个问题。
关于java - GL11.glMatrixMode() 的 LWJGL 错误 "function is not supported",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25488121/
将 glRotatef() 放在 glMatrixMode(GL_PROJECTION); 之后有什么区别 glMatrixMode(GL_PROJECTION); glLoadIdentity();
glMatrixMode(GL_PROJECTION)有什么区别和 glMatrixMode(GL_MODELVIEW) ? #include #include #include #define
我学习过的大多数 Android OpenGL ES 教程都有这样的 onSurfaceChanged() 函数: public void onSurfaceChanged( GL10 gl, int
我收到 0 个错误,但我在控制台中得到了这个: >Exception in thread "main" java.lang.NullPointerException >>at org.lwjgl.
我开始研究 OpenGL 的一些东西,我看到了很多调用 glMatrixMode 函数的例子。 根据我收集到的信息,将其设置为 GL_MODELVIEW 或 GL_PROJECTION(等)将激活该特
所以我正在阅读this LWJGL wiki 上的文章提到,“当使用‘向前兼容’上下文时,任何标记为已弃用的功能都将被删除。” 现在,当我实现与显示的前向兼容性时,每当我调用 glMatrixMode
static void resize(int width, int height) { const float ar = (float) width / (float) height;
我目前正在使用 SDL 1.2.4 和 C++Builder 10.0 Seattle。我设置了一个简单的测试程序来检查是否一切正常。 以下代码编译时没有警告或错误,但给我一个运行时错误: Excep
我正在阅读一本关于 OpenGL、SDL 的书,并且已经阅读了一些 OpenGL 文档。我也读过这篇文章:What does glLoadIdentity() do in OpenGL? 我正在掌握
我的下一个问题(或问题)是,当我用 glm 加载模型时,我能够看穿模型的某些部分,例如:如果有两座山在另一座前面,我可以看穿越近的山。 我会展示一张图片,但由于纹理不起作用,所以无法理解。 问题在这里
我想将 OpenGL 与 C++ 结合使用来创建一个带有“相机”(透视图)和要查看的对象的基本场景。我找到了示例代码 here .但出于某种原因,尽管我已将所有必要的包含和库捆绑在一起(见下文), /
在查看红皮书中的 reshape 示例时,我通常会发现如下内容: void reshape(int w, int h) { glViewport(0, 0, (GLsizei) w, (GLs
我有一个 iPhone 应用程序,我在 appDidFinishLaunching 中调用这三个函数: glMatrixMode(GL_PROJECTION); glOrthof(0, rect.si
在 Mac 上的 Parallels 中运行的 Windows 10 上,android 模拟器在启动时崩溃 C:\Android-SDK>.\tools\bin\avdmanager create
我的 OpenGL C++ 项目突然停止识别 glMatrixMode(GL_MODELVIEW)。我去吃晚饭,然后我的项目无法构建。 我在带有 CDT 插件的 Eclipse 中使用 Windows
我将先发布代码,然后发布以下问题: import java.util.Properties; import org.lwjgl.Sys; import org.lwjgl.input.Keyboard
使用 opengl es 演练黑莓 10 sdk。它使用 2 个命令,即: glMatrixMode(GL_PROJECTION); glLoadIdentity(); 及以后: glMatrixMo
我是一名优秀的程序员,十分优秀!