- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我的着色器工作正常,我可以使用 glDrawArrays 进行绘制,但我很难让 glDrawElements 工作。我在 lwjgl 函数调用与标准 openGL 不同的地方添加了注释。代码:
import org.lwjgl.Sys
import org.lwjgl.glfw._
import org.lwjgl.opengl._
import java.nio.ByteBuffer
import java.nio.FloatBuffer
import org.lwjgl.glfw.Callbacks._
import org.lwjgl.glfw.GLFW._
import org.lwjgl.opengl.GL11._
import org.lwjgl.opengl.GL15._
import org.lwjgl.opengl.GL20._
import org.lwjgl.opengl.GL30._
import org.lwjgl.system.MemoryUtil._
import org.lwjgl.BufferUtils._
import hands._
import javafx.scene.shape.CullFace
class Test {
val vertex_positions: Array[Float] = Array(
-1.0f, -1.0f, 0.0f,
1.0f, -1.0f, 0.0f,
-1.0f, 1.0f, 0.0f
)
val vertex_indices: Array[Int] = Array(
0, 1, 2
)
// We need to strongly reference callback instances.
val errorCallback: GLFWErrorCallback = Callbacks.errorCallbackPrint();
val keyCallback: GLFWKeyCallback = new GLFWKeyCallback() {
@Override
def invoke(window: Long , key: Int, scancode: Int , action: Int , mods: Int) {
if ( key == GLFW_KEY_ESCAPE && action == GLFW_RELEASE )
glfwSetWindowShouldClose(window, GL_TRUE) // We will detect this in our rendering loop
}
}
val WIDTH = 800
val HEIGHT = 600
def run(): Unit = {
System.out.println("Hello LWJGL " + Sys.getVersion() + "!")
try {
val vertBuffer = hands.createFlippedBuffer(vertex_positions)
val indexBuffer = hands.createFlippedBuffer(vertex_indices)
// Setup an error callback. The default implementation
// will print the error message in System.err.
glfwSetErrorCallback(errorCallback)
// Initialize GLFW. Most GLFW functions will not work before doing this.
if ( glfwInit() != GL_TRUE )
throw new IllegalStateException("Unable to initialize GLFW")
// Configure our window
glfwDefaultWindowHints() // optional, the current window hints are already the default
glfwWindowHint(GLFW_VISIBLE, GL_FALSE) // the window will stay hidden after creation
glfwWindowHint(GLFW_RESIZABLE, GL_TRUE) // the window will be resizable
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3)
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3)
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE)
// Create the window
val window = glfwCreateWindow(WIDTH, HEIGHT, "Hello World!", NULL, NULL)
if ( window == NULL )
throw new RuntimeException("Failed to create the GLFW window")
// Setup a key callback. It will be called every time a key is pressed, repeated or released.
glfwSetKeyCallback(window, keyCallback)
// Get the resolution of the primary monitor
val vidmode: ByteBuffer = glfwGetVideoMode(glfwGetPrimaryMonitor())
// Center our window
glfwSetWindowPos(
window,
(GLFWvidmode.width(vidmode) - WIDTH) / 2,
(GLFWvidmode.height(vidmode) - HEIGHT) / 2)
// Make the OpenGL context current
glfwMakeContextCurrent(window)
// Enable v-sync
glfwSwapInterval(1)
// Make the window visible
glfwShowWindow(window)
// This line is critical for LWJGL's interoperation with GLFW's
// OpenGL context, or any context that is managed externally.
// LWJGL detects the context that is current in the current thread,
// creates the ContextCapabilities instance and makes the OpenGL
// bindings available for use.
GLContext.createFromCurrent()
//create shader, and use it as program
val shader = new Shader()
glUseProgram(shader.program)
val vao = glGenVertexArrays()
glBindVertexArray(vao)
val vbo = glGenBuffers()
glBindBuffer(GL_ARRAY_BUFFER, vbo)
//http://javadoc.lwjgl.org/org/lwjgl/opengl/GL15.html#glBufferData%28int,%20java.nio.FloatBuffer,%20int%29
glBufferData(GL_ARRAY_BUFFER, vertBuffer, GL_STATIC_DRAW)
//this function accepts false instead of GL_FALSE
glVertexAttribPointer(0, 3, GL_FLOAT, false , 0, 0)
glEnableVertexAttribArray(0)
val ebo = glGenBuffers()
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ebo)
//http://javadoc.lwjgl.org/org/lwjgl/opengl/GL15.html#glBufferData%28int,%20java.nio.ShortBuffer,%20int%29
glBufferData(GL_ELEMENT_ARRAY_BUFFER, indexBuffer, GL_STATIC_DRAW)
// Set the clear color
glClearColor(0, 0, 0.4f, 1)
// Run the rendering loop until the user has attempted to close
// the window or has pressed the ESCAPE key.
//glfwWindowShouldClose produces a GL_FALSE, instead of a boolean value
while ( glfwWindowShouldClose(window) == GL_FALSE ) {
glClear(GL_COLOR_BUFFER_BIT) // clear the framebuffer
glBindVertexArray(vao)
glEnableVertexAttribArray(0)
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, ebo)
//http://javadoc.lwjgl.org/org/lwjgl/opengl/GL11.html#glDrawElements%28int,%20java.nio.ShortBuffer%29
glDrawElements(GL_TRIANGLES, indexBuffer)
//glDrawArrays(GL_TRIANGLES, 0, 9)
glfwSwapBuffers(window); // swap the color buffers
// Poll for window events. The key callback above will only be
// invoked during this call.
glfwPollEvents();
}
// Release window and window callbacks
glfwDestroyWindow(window)
keyCallback.release()
} finally {
// Terminate GLFW and release the GLFWerrorfun
glfwTerminate()
errorCallback.release()
}
}
}
object main{
def main( args: Array[String] ) = {
new Test().run();
}
}
最佳答案
glDrawElements()
有两种变体最后一个参数的定义和使用方式有很大不同:
以“数据”作为参数。参数的确切类型取决于语言绑定(bind),但它通常类似于 C/C++ 中的指针、Java 中的缓冲区等。
一个接受整数偏移量作为参数。
如果缓冲区当前绑定(bind)到 GL_ELEMENT_ARRAY_BUFFER
,则使用选项 2 。作为最后一个参数给出的整数是相对于绑定(bind)缓冲区开头的偏移量(以字节为单位)。
如果没有缓冲区绑定(bind)到 GL_ELEMENT_ARRAY_BUFFER
,则使用选项 1 。在本例中,最后一个参数直接指定索引数据。
您的代码中的问题是您将两者混合在一起。您有缓冲区限制,因此需要使用选项 2。但是您正在使用选项 1。在您的情况下,正确的调用是:
glDrawElements(GL_TRIANGLES, 3, GL_UNSIGNED_INT, 0)
请注意,计数(第二个参数)以顶点为单位给出,而偏移(最后一个参数)以字节为单位给出。由于您使用的是整个缓冲区,并且偏移量为 0,因此这里没有什么区别。但这是常见的错误来源。
在 C/C++ 等弱类型语言中,实际上只有一个 glDrawElements()
调用,选项 2 的偏移量被转换为指针。这也是如果您错误地使用选项 1 的调用(而不是 OpenGL 错误)会导致崩溃的原因。根据记录 C/C++ 绑定(bind)的规范,只有一次调用,因此在这种情况下不存在调用“错误”入口点的情况。它们只是更强类型语言中的不同入口点。
关于java - 使用 glDrawArrays 绘图工作正常,但使用 glDrawElements 则失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30756964/
自从我 faced an issue由于背景图片对于不同分辨率的内容来说太短,我尝试将背景分成 3 部分并自动拉伸(stretch)中间部分以相应地填充顶部和底部图像之间的空间。不幸的是我没能在 CS
我从去年开始就在我的程序中运行这个函数(Linux 和 Windows)。 现在我需要实现一个新功能,我的新构建不再运行。 我还有其他使用 POST 的 CUrl 函数,结果是一样的:没问题,但我的
在评估函数应用方面,Haskell 是只支持普通降阶还是也支持应用降阶?我是否认为正常顺序是 Haskell 惰性的原因? 最佳答案 GHC 运行时不使用术语缩减策略,因为那会非常低效。事实上,GHC
怎么来的multi使用多处理池对多个“进程”上的数据进行分段和处理的函数比仅调用 map 慢(8 秒)。功能(6 秒)? from multiprocessing import Pool import
假设我正在渲染一个 3d GL_TRIANGLE。该对象需要 3 个顶点才能定义:A、B、C。我将此类数据放入缓冲区并通过 glVertexAttribPointer 将其绑定(bind)到着色器。
我有一个字体的三个文件,普通的,粗体的和浅色的。由于 font-weight:light 不存在,我该如何在 font-face 上设置 light 呢? 顺便问一下,font-weight:ligh
我是 C 的新手,我似乎无法弄清楚什么似乎是一个非常简单的指针问题。我的程序将行号添加到文件中。它逐行读入文件,然后在每行的开头添加一个行号。它在每个文件上都可以正常工作,如下所示: soccer@s
我有以下代码,我不确定为什么当它命中 Myclass 的析构函数时我会收到堆损坏检测错误。我相信我正在正确地释放内存?? #include #include using namespace std
有什么方法可以将“正常”数学符号解释为逆波兰符号 (RPN)..? 例如1) 2 + 3*4 - 1 = 234*+1-2) 5 (4-8) = 548- 你可以假设遵循 BODMAS 规则并且必须首
http://www.ergotopia.de/ergonomie-shop/ergonomische-kissen/orthopaedisches-sitzkissen的手机页面应该看起来像右边(检
我正在 Phonegap/Cordova 中构建一个应用程序。应用目前相当简单,但确实需要网络状态和地理定位插件才能工作。 到目前为止,我已经在 Android 上开发了该应用程序(目前它仅由一些基本
我一整天都在做这个,但没有运气 我设法在一行 TfidfVectorizer 中消除了问题 这是我的工作代码 from sklearn.feature_extraction.text import C
也许有人看到一个错误,问题是当我按btn2 (button 2)和btn3 (button 3)应用程序crashes时,但操作仍然有效,即video正在运行并且PDF打开,而button 1正常工作
我正在开发一个应用程序。它的第一页是登录屏幕。成功登录后,我想将用户带到选项卡式 Activity 。我怎样才能在安卓中做到这一点?谢谢 最佳答案 在 Android 中,启动 Activity 是通
我不确定我在这里做错了什么。 :normal! I### 当我对一个单词执行此命令时,我想要的最终结果是: ### word 但是我得到了这个: ###word 最佳答案 Vim 的 :normal是
我必须将 2 个静态矩阵发送到分配动态矩阵的函数,将矩阵 1 乘以矩阵 2,并返回新矩阵的地址。请注意,COMM 很常见。 我尝试删除 free_matrix 行,它工作正常。 void main()
我在我的一个项目中使用 Gnome libglib 并遇到了一个奇怪的错误。我可以输入 GList 的元素数量看起来仅限于 45 个。在第 45 个元素处,它给出了此错误 40 counter 41
我正在尝试获取“顶级”HWND 的尺寸。即,我想要 Firefox/Windows 资源管理器等的主 HWND 的当前尺寸。窗口。如果窗口最小化, GetWindowRect() 将不起作用。 Get
相同的标题:什么是索引 - 正常 - 全文 - 唯一? 最佳答案 普通索引用于通过仅包含行数据的切片或散列来加速操作。 全文索引向数据库的全文搜索 (FTS) 引擎指示它应该将数据存档在给定字段中,以
我正在使用 EnumParser来自 here它在 VC++ 中编译得很好,但是使用 gcc 我有这样的错误: ./Terminator.o: In function `EnumParser::Enu
我是一名优秀的程序员,十分优秀!