- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正尝试从一个简单的 Spring 质量系统的动画开始学习现代 openGL。
我在类里面有一个 Spring 和一个质量 block ,每个都使用一个索引数组来绘制,当我分别绘制它们时,它们都能完美地工作。当我将两者画在一起时,顶点位置都是错误的。我猜这与我如何对顶点缓冲区和索引数组等进行编号有关,但我对内部工作原理的了解不足以弄清楚。
#include "Spring.hpp"
#include "ShaderPaths.hpp"
#include "atlas\gl\Shader.hpp"
#include "atlas\core\Macros.hpp"
#include <atlas/utils/Geometry.hpp>
const int NUM_VERTICES_PER_LINE = 3;
const int NUMFLOATSPERVERTICES = 6;
const int VERTEX_BYTE_SIZE = NUMFLOATSPERVERTICES * sizeof(float);
GLint numSpringIndices, numMassIndices;
#define NUM_ARRAY_ELEMENTS(a) sizeof(a) / sizeof(*a);
Spring::Spring() : anchorPosition{ 0.0f, 1.0f, 0.0f }, mPosition{0.0f, 0.0f, 0.0f} {
USING_ATLAS_GL_NS; //Short for atlas GL namespace
USING_ATLAS_MATH_NS;
glGenVertexArrays(1, &mVertexArrayObject);
glBindVertexArray(mVertexArrayObject);
ShapeData Spring = ObjectGenerator::makeSpring(anchorPosition, stretch, d);
ShapeData Mass = ObjectGenerator::makeMass(calculateConnectionPoint(anchorPosition), massWidth, massHeight);
ShapeData Triangle = ObjectGenerator::makeTriangle();
numSpringIndices = Spring.numIndices;
numMassIndices = Mass.numIndices;
//======= Spring Buffer ======//
glGenBuffers(1, &mSpringBuffer);
glBindBuffer(GL_ARRAY_BUFFER, mSpringBuffer);
glBufferData(GL_ARRAY_BUFFER, Spring.vertexBufferSize(), Spring.vertices, GL_STATIC_DRAW);
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, VERTEX_BYTE_SIZE, 0);
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, VERTEX_BYTE_SIZE, (char*)(sizeof(float) * 3));
glGenBuffers(1, &springIndexBufferID);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, springIndexBufferID);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, Spring.indexBufferSize(), Spring.indices, GL_STATIC_DRAW);
//======= Mass Buffer ======//
glGenBuffers(1, &mMassBuffer);
glBindBuffer(GL_ARRAY_BUFFER, mMassBuffer);
glBufferData(GL_ARRAY_BUFFER, Mass.vertexBufferSize(), Mass.vertices, GL_STATIC_DRAW);
glEnableVertexAttribArray(2);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, VERTEX_BYTE_SIZE, 0);
glEnableVertexAttribArray(3);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, VERTEX_BYTE_SIZE, (char*)(sizeof(float) * 3));
glGenBuffers(1, &massIndexBuffer);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, massIndexBuffer);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, Mass.indexBufferSize(), Mass.indices, GL_STATIC_DRAW);
//======= Shaders ======//
std::string shaderDir = generated::ShaderPaths::getShaderDirectory();
std::vector<ShaderInfo> springShaders
{
ShaderInfo{ GL_VERTEX_SHADER, shaderDir + "Spring.vs.glsl" },
ShaderInfo{ GL_FRAGMENT_SHADER, shaderDir + "Spring.fs.glsl" }
};
mShaders.push_back(ShaderPointer(new Shader));
mShaders[0]->compileShaders(springShaders);
mShaders[0]->linkShaders();
//===== Clean ups to prevent memory leaks =====//
Spring.cleanup();
Mass.cleanup();
}
Spring::~Spring()
{
glDeleteVertexArrays(1, &mVertexArrayObject);
glDeleteBuffers(1, &mSpringBuffer);
}
void Spring::renderGeometry(atlas::math::Matrix4 projection, atlas::math::Matrix4 view) {
// To avoid warnings from unused variables, you can use the
//UNUSED macro.
UNUSED(projection);
UNUSED(view);
mShaders[0]->enableShaders();
glBindVertexArray(mVertexArrayObject);
GLint dominatingColorUniformLocation = mShaders[0]->getUniformVariable("dominatingColor");
//========== Draw Spring ===============//
glm::vec3 springColor(0.0f, 1.0f, 0.0f);
glUniform3fv(dominatingColorUniformLocation, 1, &springColor[0]); //Send the location of the first float
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, springIndexBufferID);
glDrawElements(GL_LINES, numSpringIndices, GL_UNSIGNED_SHORT, 0);
//======================================//
//========= Draw Mass =================//
glm::vec3 massColor(1.0f, 0.0f, 0.0f);
glUniform3fv(dominatingColorUniformLocation, 1, &massColor[0]); //Send the location of the first float
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, massIndexBuffer);
glDrawElements(GL_TRIANGLES, numMassIndices, GL_UNSIGNED_SHORT, 0);
//======================================//
mShaders[0]->disableShaders();
}
void Spring::updateGeometry(atlas::utils::Time const& t) {
mModel = glm::translate(Matrix4(1.0f), mPosition);
}
glm::vec3 Spring::calculateConnectionPoint(glm::vec3 anchorPosition) {
glm::vec3 temp = glm::vec3(anchorPosition.x, anchorPosition.y - (18 * d), 0.0f);
return temp;
}
对于任何好奇的人来说,ObjectGenerator 类看起来像这样
#include "ObjectGenerator.h"
#define NUM_ARRAY_ELEMENTS(a) sizeof(a) / sizeof(*a);
ShapeData ObjectGenerator::makeSpring(glm::vec3 anchorPosition, GLfloat stretch, GLfloat d) {
ShapeData ret;
static const Vertex vertices[] = {
glm::vec3( anchorPosition.x, anchorPosition.y, 0.0f ), // 0
glm::vec3( 1.0f, 0.0f, 0.0f ), // Spring Color
glm::vec3( anchorPosition.x, anchorPosition.y - d,0.0f ), // 1
glm::vec3( 1.0f, 0.0f, 0.0f ), // Spring Color
glm::vec3( anchorPosition.x + stretch, anchorPosition.y - (2 * d), 0.0f ), // 2
glm::vec3( 1.0f, 0.0f, 0.0f ), // Spring Color
glm::vec3( anchorPosition.x - stretch, anchorPosition.y - (4 * d), 0.0f ), // 3
glm::vec3( 1.0f, 0.0f, 0.0f ), // Spring Color
glm::vec3( anchorPosition.x + stretch, anchorPosition.y - (6 * d), 0.0f ), // 4
glm::vec3( 1.0f, 0.0f, 0.0f ), // Spring Color
glm::vec3( anchorPosition.x - stretch, anchorPosition.y - (8 * d), 0.0f ), // 5
glm::vec3( 1.0f, 0.0f, 0.0f ), // Spring Color
glm::vec3( anchorPosition.x + stretch, anchorPosition.y - (10 * d), 0.0f ), // 6
glm::vec3( 1.0f, 0.0f, 0.0f ), // Spring Color
glm::vec3( anchorPosition.x - stretch, anchorPosition.y - (12 * d), 0.0f ), // 7
glm::vec3( 1.0f, 0.0f, 0.0f ), // Spring Color
glm::vec3( anchorPosition.x + stretch, anchorPosition.y - (14 * d), 0.0f ), // 8
glm::vec3( 1.0f, 0.0f, 0.0f ), // Spring Color
glm::vec3( anchorPosition.x - stretch, anchorPosition.y - (16 * d), 0.0f ), // 9
glm::vec3( 1.0f, 0.0f, 0.0f ), // Spring Color
glm::vec3( anchorPosition.x, anchorPosition.y - (17 * d), 0.0f ), // 10
glm::vec3( 1.0f, 0.0f, 0.0f ), // Spring Color
glm::vec3( anchorPosition.x, anchorPosition.y - (18 * d), 0.0f ), // 11
glm::vec3( 1.0f, 0.0f, 0.0f ), // Spring Color
};
ret.numVertices = NUM_ARRAY_ELEMENTS(vertices);
ret.vertices = new Vertex[ret.numVertices];
memcpy(ret.vertices, vertices, sizeof(vertices)); //memcpy(dest, source, size);
GLushort indices[] = { 0,1 ,1,2, 2,3, 3,4, 4,5, 5,6, 6,7, 7,8, 8,9, 9,10, 10,11 };
ret.numIndices = NUM_ARRAY_ELEMENTS(indices);
ret.indices = new GLushort[ret.numIndices];
memcpy(ret.indices, indices, sizeof(indices));
return ret;
}
ShapeData ObjectGenerator::makeMass(glm::vec3 connectionPoint, GLfloat width, GLfloat height) {
ShapeData ret;
static const Vertex vertices[] = {
//=================Mass==============//
glm::vec3( connectionPoint.x - width, connectionPoint.y, 0.0f ), //top Left 0
glm::vec3( 0.0f, 1.0f, 0.0f ), // Mass Color
glm::vec3(connectionPoint.x + width, connectionPoint.y, 0.0f), //top Right 1
glm::vec3(0.0f, 1.0f, 0.0f), // Mass Color
glm::vec3(connectionPoint.x + width, connectionPoint.y - height, 0.0f), // bottom right 2
glm::vec3(0.0f, 1.0f, 0.0f), // Mass Color
glm::vec3( connectionPoint.x - width, connectionPoint.y - height, 0.0f ), // bottom left 3
glm::vec3( 0.0f, 1.0f, 0.0f ), // Mass Color
};
ret.numVertices = NUM_ARRAY_ELEMENTS(vertices);
ret.vertices = new Vertex[ret.numVertices];
memcpy(ret.vertices, vertices, sizeof(vertices)); //memcpy(dest, source, size);
GLushort indices[] = {0,1,3, 1,2,3 };
ret.numIndices = NUM_ARRAY_ELEMENTS(indices);
ret.indices = new GLushort[ret.numIndices];
memcpy(ret.indices, indices, sizeof(indices));
return ret;
}
最佳答案
您的代码中存在几个相当基本的问题,这些问题似乎是基于对 OpenGL 状态管理的工作方式以及不同类型对象的连接方式的误解。
说明代码中一个基本问题的最清晰方法是代码中的以下序列(省略部分):
//======= Spring Buffer ======//
...
glBindBuffer(GL_ARRAY_BUFFER, mSpringBuffer);
...
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, VERTEX_BYTE_SIZE, 0);
//======= Mass Buffer ======//
...
glBindBuffer(GL_ARRAY_BUFFER, mMassBuffer);
...
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, VERTEX_BYTE_SIZE, 0);
如果您查看两个 glVertexAttribPointer()
调用,它们都会设置相同的顶点属性 (0
)。由于它们都设置了相同的状态,因此第二个“获胜”,覆盖了您在第一次调用时设置的状态。调用的参数是相同的,但 glVertexAttribPointer()
还隐含地获取当前绑定(bind)的 GL_ARRAY_BUFFER
,数据将从中获取。因此,属性 0 将使用来自 mMassBuffer
的数据,从不 来自 mSpringBuffer
。
解决此问题的最佳方法是使用两个顶点数组对象 (VAO)。 VAO 使用 glVertexAttribPointer()
跟踪状态集。因此,如果您使用两个不同的 VAO,其中一个可以跟踪用于 Spring 的状态,一个可以跟踪用于质量的状态。删除当前的 VAO 创建/绑定(bind)代码后,执行以下操作:
//======= Spring Buffer ======//
glGenVertexArrays(1, &mSpringVao);
glBindVertexArray(mSpringVao);
...
//======= Spring Buffer ======//
glGenVertexArrays(1, &mMassVao);
glBindVertexArray(mMassVao);
...
然后,在绘制代码中,您不必再绑定(bind)任何缓冲区,因为属性的所有状态设置都在相应的 VAO 中进行跟踪。相反,在每次绘制调用之前绑定(bind)相应的 VAO:
glBindVertexArray(mSpringVao);
glDrawElements(GL_LINES, numSpringIndices, GL_UNSIGNED_SHORT, 0);
glBindVertexArray(mMassVao);
glDrawElements(GL_LINES, numMassIndices, GL_UNSIGNED_SHORT, 0);
当然你还需要设置制服等。
此处的设置代码中还有另一个小但重要的问题:
glEnableVertexAttribArray(2);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, VERTEX_BYTE_SIZE, 0);
glEnableVertexAttribArray(3);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, VERTEX_BYTE_SIZE, (char*)(sizeof(float) * 3));
两个 glEnableVertexAttribArray()
调用的值在这里是错误的。它们需要匹配所有其他调用中使用的顶点属性的位置:
glEnableVertexAttribArray(0);
glVertexAttribPointer(0, 3, GL_FLOAT, GL_FALSE, VERTEX_BYTE_SIZE, 0);
glEnableVertexAttribArray(1);
glVertexAttribPointer(1, 3, GL_FLOAT, GL_FALSE, VERTEX_BYTE_SIZE, (char*)(sizeof(float) * 3));
关于c++ - OpenGL:两个顶点数组 + 两个索引数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35074353/
在 OpenGL/ES 中,在实现渲染到纹理功能时,您必须小心,不要引起反馈循环(从正在写入的同一纹理中读取像素)。由于显而易见的原因,当您读取和写入纹理的相同像素时,行为是未定义的。但是,如果您正在
正如我们最终都知道的那样,规范是一回事,实现是另一回事。大多数错误是我们自己造成的,但有时情况并非如此。 我相信列出以下内容会很有用: GPU 驱动程序中当前已知的与最新版本的 OpenGL 和 GL
很难说出这里问的是什么。这个问题是模棱两可的、模糊的、不完整的、过于宽泛的或修辞的,无法以目前的形式得到合理的回答。为了帮助澄清这个问题以便可以重新打开它,visit the help center
我正在学习 OpenGL,非常想知道与显卡的交互如何。 我觉得了解它是如何在图形驱动程序中实现的,会让我了解 opengl 的完整内部结构(通过这个我可以知道哪些阶段/因素影响我对 opengl 性能
我正在尝试绘制到大于屏幕尺寸(即 320x480)的渲染缓冲区 (512x512)。 执行 glReadPixels 后,图像看起来是正确的,除非图像的尺寸超过屏幕尺寸——在本例中,超过 320 水平
我正在 Windows 中制作一个 3D 小行星游戏(使用 OpenGL 和 GLUT),您可以在其中穿过一堆障碍物在太空中移动并生存下来。我正在寻找一种方法来针对无聊的 bg 颜色选项设置图像背景。
如果我想要一个包含 100 个 10*10 像素 Sprite 的 Sprite 表,是否可以将它们全部排成一排来制作 1,000*10 像素纹理?还是 GPU 对不那么窄的纹理表现更好?这对性能有什
这个问题在这里已经有了答案: Rendering 2D sprites in a 3D world? (7 个答案) 关闭 6 年前。 我如何概念化让图像始终面对相机。我尝试将三角函数与 arcta
是否可以在 OpenGL 中增加缓冲区? 假设我想使用实例化渲染。每次在世界上生成一个新对象时,我都必须用实例化数据更新缓冲区。 在这种情况下,我有一个 3 个 float 的缓冲区 std::v
有人可以向我解释为什么下面的代码没有绘制任何东西,但如果我使用 GL_LINE_LOOP 它确实形成了一个闭环吗? glBegin(GL_POLYGON); for(int i = 0; i <= N
正如标题所说,OpenGL 中的渲染目标是什么?我对 OpenGL 很陌生,我看到的所有网站都让我很困惑。 它只是一个缓冲区,我在其中放置稍后将用于渲染的东西吗? 如果您能提供一个很好的引用来阅读它,
当使用 OpenGL 1.4 固定功能多纹理时,每个纹理阶段的输出在传递到下一个阶段之前是否都固定在 [0, 1]? spec说(第 153 页): If the value of TEXTURE_E
我比较了 2 个函数 openGL ES 和 openGL gvec4 texelFetchOffset(gsampler2DArray sampler, ivec3 P, int lod, ivec
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 10 年前。 Improve thi
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 6年前关闭。 Improve this qu
那么当你调用opengl函数时,比如glDraw或者gLBufferData,是否会导致程序线程停止等待GL完成调用呢? 如果不是,那么 GL 如何处理调用像 glDraw 这样的重要函数,然后立即更
我正在尝试实现级联阴影贴图,当我想访问我的视锥体的每个分区的相应深度纹理时,我遇到了一个错误。 更具体地说,当我想选择正确的阴影纹理时会出现我的问题,如果我尝试下面的代码,我会得到一个像 this 中
我想为OpenGL ES和OpenGL(Windows)使用相同的着色器源。为此,我想定义自定义数据类型并仅使用OpenGL ES函数。 一种方法是定义: #define highp #define
我尝试用 6 个位图映射立方体以实现天空盒效果。我的问题是一个纹理映射到立方体的每个面。我已经检查了 gDEBugger,在立方体纹理内存中我只有一个 图像(因为我尝试加载六个图像)。 代码准备纹理:
在 OpenGL 中偏移深度的最佳方法是什么?我目前每个多边形都有索引顶点属性,我将其传递给 OpenGL 中的顶点着色器。我的目标是在深度上偏移多边形,其中最高索引始终位于较低索引的前面。我目前有这
我是一名优秀的程序员,十分优秀!