- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
目前我有一个分为两个循环的程序。第一个在主线程中,现在除了每秒打印几次“d00d”之外实际上什么都不做。第二个是在 SDL2 线程上运行的循环,该线程在 OpenGL 中渲染帧并将它们显示在 SDL2 窗口中。
tldr;线程一:程序循环,线程二:渲染循环
几秒钟后,Gnome 3 提示程序没有响应,即使它继续正常渲染/更新。尽管我会注意到,出于某种原因,四处移动窗口是一个很大的抖动/滞后。
我还没有在 SDL2 中设置任何输入处理,我只是通过命令行终止程序。我认为这不会导致像这样的奇怪问题,但我想我会提到它。
以与我使用 SDL2/SDL2-Thread/OpenGl 相同的方式使用 std::thread/glut/OpenGl 不会导致我现在遇到的任何问题,所以我觉得我做错了什么SDL2.
这是完整的来源:
main.cpp
#include <iostream>
#include <stdio.h>
#include <string>
#include <SDL2/SDL.h>
#include <GL/glew.h>
#include <SDL2/SDL_opengl.h>
#include <GL/glu.h>
#include <GL/gl.h>
#include "SDL2/SDL_thread.h"
#include "SDL2/SDL_timer.h"
#include <curl/curl.h>
#include "res_path.h"
using namespace std;
void testCurl(string f); size_t write_data(void *ptr, size_t size, size_t nmemb, FILE *stream);
bool initRT(); int initSDL(); bool initGL(); int renderMain(void *ptr); void render(); void close();
float random(float max);
SDL_Window* gWindow = NULL;
SDL_GLContext gContext;
bool run = true;
int main(int argc, char **argv) {
//testCurl("http://magiccards.info/scans/en/vma/4.jpg");
if(!initRT()) { std::cout << "Failed to start RT!\n"; return 1; }
while(run) {
std::cout << "d00d!\n";
SDL_Delay(33);
}
close();
return 0;
}
//Render Thread
bool initRT() {
SDL_Thread *thread;
thread = SDL_CreateThread(renderMain, "RenderThread", (void *)NULL);
if (NULL == thread) {
printf("\nSDL_CreateThread failed: %s\n", SDL_GetError());
return false;
}
return true;
}
const int SCREEN_WIDTH = 640; const int SCREEN_HEIGHT = 480;
int initSDL() {
//Initialization flag
bool success = true;
//Initialize SDL
if( SDL_Init( SDL_INIT_VIDEO ) < 0 )
{
printf( "SDL could not initialize! SDL Error: %s\n", SDL_GetError() );
success = false;
}
else
{
//Use OpenGL 3.1 core
SDL_GL_SetAttribute( SDL_GL_CONTEXT_MAJOR_VERSION, 3 );
SDL_GL_SetAttribute( SDL_GL_CONTEXT_MINOR_VERSION, 1 );
SDL_GL_SetAttribute( SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE );
//Create window
gWindow = SDL_CreateWindow( "SDL Tutorial", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, SCREEN_WIDTH, SCREEN_HEIGHT, SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN );
if( gWindow == NULL )
{
printf( "Window could not be created! SDL Error: %s\n", SDL_GetError() );
success = false;
}
else
{
//Create context
gContext = SDL_GL_CreateContext( gWindow );
if( gContext == NULL )
{
printf( "OpenGL context could not be created! SDL Error: %s\n", SDL_GetError() );
success = false;
}
else
{
//Initialize GLEW
glewExperimental = GL_TRUE;
GLenum glewError = glewInit();
if( glewError != GLEW_OK )
{
printf( "Error initializing GLEW! %s\n", glewGetErrorString( glewError ) );
}
//Use Vsync
if( SDL_GL_SetSwapInterval( 1 ) < 0 )
{
printf( "Warning: Unable to set VSync! SDL Error: %s\n", SDL_GetError() );
}
//Initialize OpenGL
if( !initGL() )
{
printf( "Unable to initialize OpenGL!\n" );
success = false;
}
}
}
}
return success ? 1 : 0;
}
bool initGL() {
//Success flag
bool success = true;
//Not dealing with this right now. Call me when you grow a fragment~
return success;
}
int renderMain(void *ptr) {
if(!initSDL()) { std::cout << "Failed to start SDL!\n"; return 1; }
while(run) {
std::cout << "br0!\n";
//Render quad
render();
//Update screen
SDL_GL_SwapWindow( gWindow );
SDL_Delay(3);
}
return 0;
}
void close() {
//Destroy window
SDL_DestroyWindow( gWindow );
gWindow = NULL;
//Quit SDL subsystems
SDL_Quit();
}
void render() {
glClearColor(0.7, 0.7, 0.7, 0.0);
glClear(GL_COLOR_BUFFER_BIT);
glLoadIdentity();
glOrtho(-3.0f,3.0f,-3.0f,3.0f,0.0f,1.0f);
glBegin(GL_LINES);
glColor4f(random(1.0f),random(1.0f),random(1.0f),random(1.0f));
glVertex2f(1.0f,1.0f);
glColor4f(random(1.0f),random(1.0f),random(1.0f),random(1.0f));
glVertex2f(1.0f,-1.0f);
glColor4f(random(1.0f),random(1.0f),random(1.0f),random(1.0f));
glVertex2f(1.0f,-1.0f);
glColor4f(random(1.0f),random(1.0f),random(1.0f),random(1.0f));
glVertex2f(-1.0f,-1.0f);
glColor4f(random(1.0f),random(1.0f),random(1.0f),random(1.0f));
glVertex2f(-1.0f,-1.0f);
glColor4f(random(1.0f),random(1.0f),random(1.0f),random(1.0f));
glVertex2f(-1.0f,1.0f);
glColor4f(random(1.0f),random(1.0f),random(1.0f),random(1.0f));
glVertex2f(-1.0f,1.0f);
glColor4f(random(1.0f),random(1.0f),random(1.0f),random(1.0f));
glVertex2f(1.0f,1.0f);
glEnd();
glFlush();
}
void testCurl(string url) {
CURL *curl;
FILE *fp;
CURLcode res;
char outfilename[FILENAME_MAX] = "/home/inferno/test.jpg";
curl = curl_easy_init();
if (curl) {
fp = fopen(outfilename,"wb");
curl_easy_setopt(curl, CURLOPT_URL, url.c_str());
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_data);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, fp);
res = curl_easy_perform(curl);
/* always cleanup */
curl_easy_cleanup(curl);
fclose(fp);
}
}
size_t write_data(void *ptr, size_t size, size_t nmemb, FILE *stream) {
size_t written = fwrite(ptr, size, nmemb, stream);
return written;
}
float random(float max) {
return static_cast <float> (rand()) / (static_cast <float> (RAND_MAX/max));
}
res_path.h
#ifndef RES_PATH_H
#define RES_PATH_H
#include <iostream>
#include <string>
#include <SDL2/SDL.h>
/*
* Get the resource path for resources located in res/subDir
* It's assumed the project directory is structured like:
* bin/
* the executable
* res/
* Lesson1/
* Lesson2/
*
* Paths returned will be Lessons/res/subDir
*/
std::string getResourcePath(const std::string &subDir = ""){
//We need to choose the path separator properly based on which
//platform we're running on, since Windows uses a different
//separator than most systems
#ifdef _WIN32
const char PATH_SEP = '\\';
#else
const char PATH_SEP = '/';
#endif
//This will hold the base resource path: Lessons/res/
//We give it static lifetime so that we'll only need to call
//SDL_GetBasePath once to get the executable path
static std::string baseRes;
if (baseRes.empty()){
//SDL_GetBasePath will return NULL if something went wrong in retrieving the path
char *basePath = SDL_GetBasePath();
if (basePath){
baseRes = basePath;
SDL_free(basePath);
}
else {
std::cerr << "Error getting resource path: " << SDL_GetError() << std::endl;
return "";
}
//We replace the last bin/ with res/ to get the the resource path
size_t pos = baseRes.rfind("bin");
baseRes = baseRes.substr(0, pos) + "res" + PATH_SEP;
}
//If we want a specific subdirectory path in the resource directory
//append it to the base path. This would be something like Lessons/res/Lesson0
return subDir.empty() ? baseRes : baseRes + subDir + PATH_SEP;
}
#endif
最佳答案
也许您应该接受(然后忽略)输入事件。我猜系统发现输入事件没有从队列中提取出来,并假设程序卡住了。
关于c++ - SDL2 + OpenGL = Gnome 3 错误地提示 "Program not responding",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27310226/
在 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 中的顶点着色器。我的目标是在深度上偏移多边形,其中最高索引始终位于较低索引的前面。我目前有这
我是一名优秀的程序员,十分优秀!