gpt4 book ai didi

java - FloatBuffer 绘制纹理四边形,但 ShortBuffer 不绘制

转载 作者:行者123 更新时间:2023-11-30 05:46:20 28 4
gpt4 key购买 nike

我正在尝试绘制一个有纹理的四边形。由于它是一个四边形,我想使用 glDrawElements 和 VEO,但这需要 ShortBuffer 而不是 FloatBuffer。我尝试更改我的代码,但现在没有任何效果。旧代码:上传并绘图:

 public void flush() {
if (numVertices > 0) {
vertices.flip();

if (vao != null) {
vao.bind();
} else {
vbo.bind(GL_ARRAY_BUFFER);
specifyVertexAttributes();
}
program.use();

/* Upload the new vertex data */
vbo.bind(GL_ARRAY_BUFFER);
vbo.uploadSubData(GL_ARRAY_BUFFER, 0, vertices);

/* Draw batch */
glDrawArrays(GL_TRIANGLES, 0, numVertices);

/* Clear vertex data for next batch */
vertices.clear();
numVertices = 0;
}
}

向缓冲区添加纹理:

if (vertices.remaining() < 7 * 6) {
/* We need more space in the buffer, so flush it */
flush();
}

float r = c.getRed();
float g = c.getGreen();
float b = c.getBlue();
float a = c.getAlpha();

vertices.put(x1).put(y1).put(r).put(g).put(b).put(a).put(s1).put(t1);
vertices.put(x1).put(y2).put(r).put(g).put(b).put(a).put(s1).put(t2);
vertices.put(x2).put(y2).put(r).put(g).put(b).put(a).put(s2).put(t2);

vertices.put(x1).put(y1).put(r).put(g).put(b).put(a).put(s1).put(t1);
vertices.put(x2).put(y2).put(r).put(g).put(b).put(a).put(s2).put(t2);
vertices.put(x2).put(y1).put(r).put(g).put(b).put(a).put(s2).put(t1);

numVertices += 6;

更新的代码:上传和绘图:

public void flush() {
if (numVertices > 0) {
vertices.flip();

if (vao != null) {
vao.bind();
} else {
vbo.bind(GL_ARRAY_BUFFER);
specifyVertexAttributes();
}
program.use();

/* Upload the new vertex data */
vbo.bind(GL_ARRAY_BUFFER);
vbo.uploadSubData(GL_ARRAY_BUFFER, 0, vertices);

/* Draw batch */
glDrawArrays(GL_TRIANGLES, 0, numVertices);

/* Clear vertex data for next batch */
vertices.clear();
numVertices = 0;
}
}

向缓冲区添加纹理:

if (vertices.remaining() < 7 * 6) {
/* We need more space in the buffer, so flush it */
flush();
}

short r = (short) c.getRed();
short g = (short) c.getGreen();
short b = (short) c.getBlue();
short a = (short) c.getAlpha();

short sx1 = (short) Math.round(x1), sx2 = (short) Math.round(x2), sy1 = (short) Math.round(y1), sy2 = (short) Math.round(y2), ss1 = (short) Math.round(s1), ss2 = (short) Math.round(s2), st1 = (short) Math.round(t1), st2 = (short) Math.round(t2);
vertices.put(sx1).put(sy1).put(r).put(g).put(b).put(a).put(ss1).put(st1);
vertices.put(sx1).put(sy2).put(r).put(g).put(b).put(a).put(ss1).put(st2);
vertices.put(sx2).put(sy2).put(r).put(g).put(b).put(a).put(ss2).put(st2);

vertices.put(sx1).put(sy1).put(r).put(g).put(b).put(a).put(ss1).put(st1);
vertices.put(sx2).put(sy2).put(r).put(g).put(b).put(a).put(ss2).put(st2);
vertices.put(sx2).put(sy1).put(r).put(g).put(b).put(a).put(ss2).put(st1);

numVertices += 6;

除了在我的 uploadSubData 方法中将 FloatBuffer 替换为 ShortBuffer 之外,代码没有其他任何更改。 VBO 类只是 OpenGL 方法的包装器,因此 uploadSubDataglUploadSubData 等...我缺少什么?为什么glDrawArrays不绘制ShortBuffer?如果我遗漏了什么,请告诉我,我没有太多时间写这篇文章。

最佳答案

您混淆了索引和顶点坐标。坐标是 GL_ARRAY_BUFFERGL_FLOAT 类型的元组。但索引是 GL_ELEMENT_ARRAY_BUFFER 中的整数索引列表(例如,GL_SHORT 类型),它引用顶点坐标。

一个四边形可以由2个三角形组成。您可以定义6个顶点坐标和属性并使用 glDrawArrays .

下面的verticesFloatBuffer类型:

vertices.put(x1).put(y1).put(r).put(g).put(b).put(a).put(s1).put(t1);
vertices.put(x1).put(y2).put(r).put(g).put(b).put(a).put(s1).put(t2);
vertices.put(x2).put(y2).put(r).put(g).put(b).put(a).put(s2).put(t2);

vertices.put(x1).put(y1).put(r).put(g).put(b).put(a).put(s1).put(t1);
vertices.put(x2).put(y2).put(r).put(g).put(b).put(a).put(s2).put(t2);
vertices.put(x2).put(y1).put(r).put(g).put(b).put(a).put(s2).put(t1);

numVertices += 6;
vbo.bind(GL_ARRAY_BUFFER);
vbo.uploadSubData(GL_ARRAY_BUFFER, 0, vertices);

glDrawArrays(GL_TRIANGLES, 0, numVertices);

或者您可以分别定义 4 个顶点坐标属性和 6 个索引并使用 glDrawElements .

下面的vertices仍然是FloatBuffer类型,但是indicesShortBuffer类型:

vertices.put(x1).put(y1).put(r).put(g).put(b).put(a).put(s1).put(t1);
vertices.put(x1).put(y2).put(r).put(g).put(b).put(a).put(s1).put(t2);
vertices.put(x2).put(y2).put(r).put(g).put(b).put(a).put(s2).put(t2);
vertices.put(x2).put(y1).put(r).put(g).put(b).put(a).put(s2).put(t1);

numVertices += 4;
indices.put(0).put(1).put(2);
indices.put(0).put(2).put(3);

numIndices += 4;
vbo.bind(GL_ARRAY_BUFFER);
vbo.uploadSubData(GL_ARRAY_BUFFER, 0, vertices);
ibo.bind(GL_ELEMENT_ARRAY_BUFFER);
ibo.uploadSubData(GL_ELEMENT_ARRAY_BUFFER, 0, indices);

glDrawElements(GL_TRIANGLES, GL_SHORT, numIndices, null);

所以关键是您需要 2 个 uploadSubData 方法。前者必须处理FloatBuffer,后者必须处理ShortBuffer
请注意,顶点属性通常都是浮点值。颜色通常是 [0, 1] 范围内的浮点值。纹理坐标的范围为 [0, 1]。当然,可以将其编码为整数数据类型,但至少对于顶点坐标来说,这会导致精度损失。

关于java - FloatBuffer 绘制纹理四边形,但 ShortBuffer 不绘制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54773354/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com