- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
为了学习如何使用 opengl,我有一个极简构建系统和一个玩具程序。我的 makefile 生成这些命令:
g++ -O1 -std=c++17 -Wall -Wextra -pedantic -c -o main.o main.cpp
g++ main.o -lglfw -lGLEW -lGL -o main
在该目录中,我有一个单独的 main.cpp 文件。与这里关于 SO 的许多问题相反,这确实有效。 编译和链接没有问题。但是,当我运行该程序时,它只显示我用 glClear
编写的背景颜色,而不是我的测试三角形。
我已经验证这不是我的代码的问题,因为如果我使用我在教程中找到的(相当复杂和臃肿的)构建系统编译它似乎可以工作。但是,我想了解如何自己实际构建一个 opengl 程序。我怀疑我缺少一些库或其他东西,但我希望程序崩溃,而不是(几乎)什么都不做。
我正在运行最新的 debian。
怎么会编译链接完美,却不能正常运行呢?
免责声明:我对 opengl 和窗口应用程序完全陌生。我不是 100% 确定我为什么需要 glew。
代码:
#include <iostream>
#include <GL/glew.h>
#include <GLFW/glfw3.h>
bool install_shader(GLuint where, std::string const& code, GLuint* attach_to) {
GLuint shader_id = glCreateShader(where);
{
auto const p = code.c_str();
glShaderSource(shader_id,1,&p,nullptr); // nullptr indicates null-termination here
}
glCompileShader(shader_id);
GLint out;
glGetShaderiv(shader_id, GL_COMPILE_STATUS, &out);
if (out == GL_FALSE) {
// something went wrong with the shader compilation
glGetShaderiv(shader_id, GL_INFO_LOG_LENGTH, &out);
if (out == 0) {
std::cout << "Unknown Error during shader compilation\n";
} else {
std::string error;
error.resize(out-1);
glGetShaderInfoLog(shader_id, out, nullptr, error.data());
std::cout << "Shader Compilation failed with error: " << error;
}
return false;
} else {
std::cout << "shader(" << int(shader_id) << "@" << int(where) << ") compiled fine\n";
if (attach_to) {
glAttachShader(*attach_to, shader_id);
}
// XXX THE SHADERS SHOULD BE DELETED AFTER LINKING !!!!
// glDeleteShader(shader_id)
return true;
}
}
bool install_program(GLuint program_id) {
glLinkProgram(program_id);
GLint out;
glGetProgramiv(program_id, GL_LINK_STATUS, &out);
if (out == GL_FALSE) {
// something went wrong with the program linking
glGetProgramiv(program_id, GL_INFO_LOG_LENGTH, &out);
if (out == 0) {
std::cout << "Unknown link-Error in shader program\n";
} else {
std::string error;
error.resize(out-1);
glGetProgramInfoLog(program_id, out, nullptr, error.data());
std::cout << "Program linking failed with error: " << error;
}
return false;
} else {
std::cout << "program(" << int(program_id) << ") compiled fine\n";
return true;
}
}
int main() {
if (glfwInit()) {
std::cout << "Initialisation fine\n";
} else {
std::cout << "Initialisation failed\n";
return 1;
}
glfwWindowHint(GLFW_SAMPLES, 4); // 4x antialiasing
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); // We want OpenGL 3.3
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 3);
if (GLFWwindow* window = glfwCreateWindow(800,600,"testwindow",nullptr,nullptr)) {
glfwMakeContextCurrent(window);
if (glewInit() == GLEW_OK) {
std::cout << "GLEW also fine\n";
} else {
std::cout << "GLEW says nope!\n";
goto die;
return 2;
}
//std::cout << "Ensure we can capture the escape key being pressed below...\n";
glfwSetInputMode(window, GLFW_STICKY_KEYS, GL_TRUE);
/*business*/
// (1) specify the triangle to draw
// An array of 3 vectors which represents 3 vertices
GLfloat g_vertex_buffer_data[] = {
-0.4f, -0.8f, 0.f,
0.4f, -0.8f, 0.f,
0.0f, 0.8f, 0.f,
};
GLuint vertexbuffer;
glGenBuffers(1, &vertexbuffer);
GLuint program_id = glCreateProgram();
// (3) vertex shader
std::string vshader_code = "#version 330 core\n"
"layout (location = 0) in vec3 aPos;\n"
"\n"
"void main()\n"
"{\n"
" gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0);\n"
"}\n";
if (!install_shader(GL_VERTEX_SHADER,vshader_code,&program_id)) {
goto die;
}
std::string fshader_code = "#version 330 core\n"
"out vec3 color;\n"
"\n"
"void main()\n"
"{\n"
" color = vec3(0.9,0.8,0.1);\n"
"}\n";
if (!install_shader(GL_FRAGMENT_SHADER,fshader_code,&program_id)) {
goto die;
}
if (!install_program(program_id)) {
goto die;
}
glClearColor(0.3, 0.5, 0.5, 1.0);
glBindBuffer(GL_ARRAY_BUFFER, vertexbuffer);
glBufferData(GL_ARRAY_BUFFER, sizeof(g_vertex_buffer_data), g_vertex_buffer_data, GL_STATIC_DRAW);
do {
glClear(GL_COLOR_BUFFER_BIT);
glUseProgram(program_id);
glEnableVertexAttribArray(0); // this 0 also refes to 'layout (location = 0)' in the vertex shader
glBindBuffer(GL_ARRAY_BUFFER, vertexbuffer);
glBufferData(GL_ARRAY_BUFFER, sizeof(g_vertex_buffer_data), g_vertex_buffer_data, GL_STATIC_DRAW);
glVertexAttribPointer(
0, // this refes to 'layout (location = 0)' in the vertex shader
3, // each vertex has 3 coordinates (2d data is also possible)
GL_FLOAT, // coordinates are of type GLfloat (GL_FLOAT)
GL_FALSE, // we don't need the input data to be nomalised,
0, //&g_vertex_buffer_data[3] - &g_vertex_buffer_data[0], // stride
nullptr // offset ptr
);
// Draw the triangle !
glDrawArrays(GL_TRIANGLES, 0, 3);
glDisableVertexAttribArray(0);
glfwSwapBuffers(window);
glfwPollEvents();
} // Check if the ESC key was pressed or the window was closed
while( glfwGetKey(window, GLFW_KEY_ESCAPE ) != GLFW_PRESS && glfwWindowShouldClose(window) == 0 );
} else {
std::cout << "Could not create window\n";
}
die:
glfwTerminate();
std::cout << "Terminated\n";
}
最佳答案
您需要有一个 Vertex Array Object ,并绑定(bind)它来存储绘制三角形所需的状态:
GLuint vao;
glGenVertexArrays(1, &vao);
glBindVertexArray(vao);
// your remaining code
GLuint vertexbuffer;
glGenBuffers(1, &vertexbuffer);
// ...
The compatibility OpenGL profile makes VAO object 0 a default object. The core OpenGL profile makes VAO object 0 not an object at all. So if VAO 0 is bound in the core profile, you should not call any function that modifies VAO state. This includes binding the
GL_ELEMENT_ARRAY_BUFFER
with glBindBuffer.
根据配置文件和/或驱动程序,可能会有一个事件的默认 VAO,这将导致渲染小三角。但是要有一个标准的提示设置,你需要为你想要渲染的对象创建一个 VAO。
这并不能真正解释为什么它与捆绑的 GLFW 和 GLEW 一起工作,但也许其中之一会创建一个默认的 VAO 来模仿兼容性配置文件行为或 NVIDIA 驱动程序的启动。
您可以使用该代码检查您是否处于核心配置文件或兼容性配置文件中:
GLint prof;
glGetIntegerv(GL_CONTEXT_PROFILE_MASK, &prof);
std::cout << (prof&GL_CONTEXT_CORE_PROFILE_BIT) << " " << (prof&GL_CONTEXT_COMPATIBILITY_PROFILE_BIT) << std::endl;
关于c++ - 如何在 debian 下正确链接 opengl 程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59487230/
我是 C 语言新手,我编写了这个 C 程序,让用户输入一年中的某一天,作为返回,程序将输出月份以及该月的哪一天。该程序运行良好,但我现在想简化该程序。我知道我需要一个循环,但我不知道如何去做。这是程序
我一直在努力找出我的代码有什么问题。这个想法是创建一个小的画图程序,并有红色、绿色、蓝色和清除按钮。我有我能想到的一切让它工作,但无法弄清楚代码有什么问题。程序打开,然后立即关闭。 import ja
我想安装screen,但是接下来我应该做什么? $ brew search screen imgur-screenshot screen
我有一个在服务器端工作的 UDP 套接字应用程序。为了测试服务器端,我编写了一个简单的 python 客户端程序,它发送消息“hello world how are you”。服务器随后应接收消息,将
我有一个 shell 脚本,它运行一个 Python 程序来预处理一些数据,然后运行一个 R 程序来执行一些长时间运行的任务。我正在学习使用 Docker 并且我一直在运行 FROM r-base:l
在 Linux 中。我有一个 c 程序,它读取一个 2048 字节的文本文件作为输入。我想从 Python 脚本启动 c 程序。我希望 Python 脚本将文本字符串作为参数传递给 c 程序,而不是将
前言 最近开始整理笔记里的库存草稿,本文是 23 年 5 月创建的了(因为中途转移到 onedrive,可能还不止) 网页调起电脑程序是经常用到的场景,比如百度网盘下载,加入 QQ 群之类的 我
对于一个类,我被要求编写一个 VHDL 程序,该程序接受两个整数输入 A 和 B,并用 A+B 替换 A,用 A-B 替换 B。我编写了以下程序和测试平台。它完成了实现和行为语法检查,但它不会模拟。尽
module Algorithm where import System.Random import Data.Maybe import Data.List type Atom = String ty
我想找到两个以上数字的最小公倍数 求给定N个数的最小公倍数的C++程序 最佳答案 int lcm(int a, int b) { return (a/gcd(a,b))*b; } 对于gcd,请查看
这个程序有错误。谁能解决这个问题? Error is :TempRecord already defines a member called 'this' with the same paramete
当我运行下面的程序时,我在 str1 和 str2 中得到了垃圾值。所以 #include #include #include using namespace std; int main() {
这是我的作业: 一对刚出生的兔子(一公一母)被放在田里。兔子在一个月大时可以交配,因此在第二个月的月底,每对兔子都会生出两对新兔子,然后死去。 注:在第0个月,有0对兔子。第 1 个月,有 1 对兔子
我编写了一个程序,通过对字母使用 switch 命令将十进制字符串转换为十六进制,但是如果我使用 char,该程序无法正常工作!没有 switch 我无法处理 9 以上的数字。我希望你能理解我,因为我
我是 C++ 新手(虽然我有一些 C 语言经验)和 MySQL,我正在尝试制作一个从 MySQL 读取数据库的程序,我一直在关注这个 tutorial但当我尝试“构建”解决方案时出现错误。 (我正在使
仍然是一个初学者,只是尝试使用 swift 中的一些基本函数。 有人能告诉我这段代码有什么问题吗? import UIKit var guessInt: Int var randomNum = arc
我正在用 C++11 编写一个函数,它采用 constant1 + constant2 形式的表达式并将它们折叠起来。 constant1 和 constant2 存储在 std::string 中,
我用 C++ 编写了这段代码,使用运算符重载对 2 个矩阵进行加法和乘法运算。当我执行代码时,它会在第 57 行和第 59 行产生错误,非法结构操作(两行都出现相同的错误)。请解释我的错误。提前致谢:
我是 C++ 的初学者,我想编写一个简单的程序来交换字符串中的两个字符。 例如;我们输入这个字符串:“EXAMPLE”,我们给它交换这两个字符:“E”和“A”,输出应该类似于“AXEMPLA”。 我在
我需要以下代码的帮助: 声明 3 个 double 类型变量,每个代表三角形的三个边中的一个。 提示用户为第一面输入一个值,然后 将用户的输入设置为您创建的代表三角形第一条边的变量。 将最后 2 个步
我是一名优秀的程序员,十分优秀!