gpt4 book ai didi

java - 重复调用 glBufferData 未能为新缓冲区分配内存

转载 作者:太空宇宙 更新时间:2023-11-04 12:19:52 26 4
gpt4 key购买 nike

在渲染器的初始化中,VBO被创建并绑定(bind)到GL_ARRAY_BUFFER或GL_ELEMENTS_ARRAY_BUFFER,第一个有三个顶点。调用glBufferData将这三个顶点的属性缓存到GPU。如:

InitVBO() {

vboArray = new int[4];

GLES20.glGenBuffers(4, vboArray, 0);

poseBuf = ByteBuffer.allocateDirect(poseLength * Float.SIZE / Byte.SIZE).order(ByteOrder.nativeOrder()).asFloatBuffer();
UpdatePose(); // fill array data to FloatBuffer

GLES20.glBindBuffer(GLES20.GL_ARRAY_BUFFER, vboArray[VBO_VERTEX]);
GLES20.glBufferData(GLES20.GL_ARRAY_BUFFER, poseLength * Float.SIZE / Byte.SIZE, poseBuf, GLES20.GL_DYNAMIC_DRAW); // poseBuf initialized capacity is 9 * 4

GLES20.glGetBufferParameteriv(GLES20.GL_ARRAY_BUFFER, GLES20.GL_BUFFER_SIZE, params, 0); // Get params[0] is 36

colorBuf = ByteBuffer.allocateDirect(colorLength * Float.SIZE / Byte.SIZE).order(ByteOrder.nativeOrder()).asFloatBuffer();
UpdateColor(); // fill array data to FloatBuffer
GLES20.glBindBuffer(GLES20.GL_ARRAY_BUFFER, vboArray[VBO_GRID_COLOR]);
GLES20.glBufferData(GLES20.GL_ARRAY_BUFFER, colorLength * Float.SIZE / Byte.SIZE, gridColorBuf, GLES20.GL_DYNAMIC_DRAW);

...
GLES20.glBindBuffer(GLES20.GL_ARRAY_BUFFER, 0);
}

然后,它在子线程中从 TCP Network Msg 接收顶点数据。顶点数多于三个。我想起了glBufferData:

UpdateVBO(){

poseBuf = ByteBuffer.allocateDirect(poseLength * Float.SIZE / Byte.SIZE).order(ByteOrder.nativeOrder()).asFloatBuffer();
UpdatePose(); // fill array data to FloatBuffer
GLES20.glBindBuffer(GLES20.GL_ARRAY_BUFFER, vboArray[VBO_VERTEX]);
GLES20.glBufferData(GLES20.GL_ARRAY_BUFFER, poseLength * Float.SIZE / Byte.SIZE, poseBuf, GLES20.GL_DYNAMIC_DRAW); // poseBuf has been updated with capacity 12 * 4

GLES20.glGetBufferParameteriv(GLES20.GL_ARRAY_BUFFER, GLES20.GL_BUFFER_SIZE, pnew, 0); // get pnew[0] is 0

...

GLES20.glBindBuffer(GLES20.GL_ARRAY_BUFFER, 0);
}

为什么 OpenGL ES Server 不为新缓冲区分配内存?

最佳答案

我找到了答案。

我的程序的重大错误是我不应该在程序的子线程中更新缓冲区缓存。

如果我创建一个由子线程调用的函数来更新顶点poseBuf,并更新绘制函数中的VBO缓存。这个问题将会得到解决。

关于java - 重复调用 glBufferData 未能为新缓冲区分配内存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38950558/

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