Questions tagged «sdl»


2
什么是SDL渲染器?
我从SDL2开始,尝试理解SDL_Renderer是什么时遇到了一些麻烦。 它是什么?它有什么作用?SDL_Renderer,SDL_Window,SDL_Surface和SDL_Texture有什么区别以及它们之间的关系? 在尝试理解此入门代码时,我遇到了问题: #include <iostream> #include <SDL2/SDL.h> int main() { /* Starting SDL */ if (SDL_Init(SDL_INIT_EVERYTHING) != 0) { std::cout << "SDL_Init Error: " << SDL_GetError() << std::endl; return 1; } /* Create a Window */ SDL_Window *window = SDL_CreateWindow("Hello World!", 100, 100, 640, 480, SDL_WINDOW_SHOWN); if (window == nullptr) …
103 c++  sdl  terminology  sdl-2 

4
表面和纹理之间的差异(SDL /常规)
谁能用简单的词向我解释纹理和表面之间的区别是什么?我看到它用在SDL2asSDL_Surface和中SDL_Texture。SDL_Texture从中SDL_Surface创建图像,然后从图像/位图中创建图像。两者都是像素的集合。但是我看不到它们之间的主要区别(是否需要对GPU进行处理?) 我试图用Google搜索它,但是我发现的所有解释都太复杂了,以至于无法理解它们而又不深入研究计算机图形学的东西。
83 c  graphics  sdl  sdl-2 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.