当前位置:网站首页>SDL2来源分析7:演出(SDL_RenderPresent())
SDL2来源分析7:演出(SDL_RenderPresent())
2022-07-06 12:56:00 【全栈程序员站长】
大家好,又见面了,我是全栈君。
=====================================================
SDL源代码分析系列文章上市:
SDL2源码分析5:更新纹理(SDL_UpdateTexture())
SDL2源码分析6:拷贝到渲染器(SDL_RenderCopy())
SDL2源码分析7:显示(SDL_RenderPresent())
=====================================================
上一篇文章分析了SDL纹理赋值给渲染目标的函数SDL_RenderCopy()。
这篇文章分析SDL显示视频最后的一个函数:SDL_RenderPresent()。
SDL播放视频的代码流程例如以下所看到的。 初始化:
SDL_Init(): 初始化SDL。 SDL_CreateWindow(): 创建窗体(Window)。 SDL_CreateRenderer(): 基于窗体创建渲染器(Render)。 SDL_CreateTexture(): 创建纹理(Texture)。
循环渲染数据:
SDL_UpdateTexture(): 设置纹理的数据。 SDL_RenderCopy(): 纹理复制给渲染器。 SDL_RenderPresent(): 显示。
上篇文章分析了该流程中的第6个函数SDL_RenderCopy()。本文继续分析该流程中的最后一个函数SDL_RenderPresent()。
SDL_RenderPresent()
函数简单介绍
SDL使用SDL_RenderPresent()显示画面。
SDL_RenderPresent()的原型例如以下。
void SDLCALL SDL_RenderPresent(SDL_Renderer * renderer);
參数renderer用于指定渲染器。
函数调用关系图
SDL_RenderPresent()关键函数的调用关系能够用下图表示。
上面的图片不太清晰,更清晰的图片上传到了相冊里面:
http://my.csdn.net/leixiaohua1020/album/detail/1794103
把相冊里面的图片保存下来就能够得到清晰的图片了。
源码分析
SDL_RenderPresent()的源码位于render\SDL_render.c中。
例如以下所看到的。
void SDL_RenderPresent(SDL_Renderer * renderer)
{
CHECK_RENDERER_MAGIC(renderer, );
/* Don't draw while we're hidden */
if (renderer->hidden) {
return;
}
renderer->RenderPresent(renderer);
}
从源码中能够看出,SDL_RenderPresent()调用了SDL_Render的RenderPresent()方法显示图像。
以下我们具体看一下几种不同的渲染器的RenderPresent()的方法。
1. Direct3D
Direct3D 渲染器中相应RenderPresent()的函数是D3D_RenderPresent()。它的源码例如以下所看到的(位于render\direct3d\SDL_render_d3d.c)。
static void D3D_RenderPresent(SDL_Renderer * renderer)
{
D3D_RenderData *data = (D3D_RenderData *) renderer->driverdata;
HRESULT result;
if (!data->beginScene) {
IDirect3DDevice9_EndScene(data->device);
data->beginScene = SDL_TRUE;
}
result = IDirect3DDevice9_TestCooperativeLevel(data->device);
if (result == D3DERR_DEVICELOST) {
/* We'll reset later */
return;
}
if (result == D3DERR_DEVICENOTRESET) {
D3D_Reset(renderer);
}
result = IDirect3DDevice9_Present(data->device, NULL, NULL, NULL, NULL);
if (FAILED(result)) {
D3D_SetError("Present()", result);
}
}
从代码中能够看出,该函数调用了2个最关键Direct3D的API: IDirect3DDevice9_EndScene():结束一个场景。 IDirect3DDevice9_Present():显示。
2. OpenGL
OpenGL渲染器中相应RenderPresent()的函数是GL_RenderPresent(),它的源码例如以下所看到的(位于render\opengl\SDL_render_gl.c)。
static void GL_RenderPresent(SDL_Renderer * renderer)
{
GL_ActivateRenderer(renderer);
SDL_GL_SwapWindow(renderer->window);
}
代码比較简单,仅仅有两行。关键的显示函数位于SDL_GL_SwapWindow()函数中。以下看一下SDL_GL_SwapWindow()的代码(位于video\SDL_video.c。感觉这里调用关系略微有点乱…)。
void SDL_GL_SwapWindow(SDL_Window * window)
{
CHECK_WINDOW_MAGIC(window, );
if (!(window->flags & SDL_WINDOW_OPENGL)) {
SDL_SetError("The specified window isn't an OpenGL window");
return;
}
if (SDL_GL_GetCurrentWindow() != window) {
SDL_SetError("The specified window has not been made current");
return;
}
_this->GL_SwapWindow(_this, window);
}
从上述代码中能够看出。SDL_GL_SwapWindow()调用了SDL_VideoDevice的GL_SwapWindow()函数。
我们看一下在“Windows视频驱动”的情况下,该函数的代码。在“Windows视频驱动”的情况下,调用GL_SwapWindow()实际上是调用了WIN_GL_SwapWindow()函数。看一下WIN_GL_SwapWindow()函数的代码(位于video\windows\SDL_windowsopengl.c)。
void WIN_GL_SwapWindow(_THIS, SDL_Window * window)
{
HDC hdc = ((SDL_WindowData *) window->driverdata)->hdc;
SwapBuffers(hdc);
}
代码中调用了简单的一个函数SwapBuffers(),完毕了显示功能。
3. Software
Software渲染器中相应RenderPresent()的函数是SW_RenderPresent(),它的源码例如以下所看到的(位于render\software\SDL_render_sw.c)。
static void SW_RenderPresent(SDL_Renderer * renderer)
{
SDL_Window *window = renderer->window;
if (window) {
SDL_UpdateWindowSurface(window);
}
}
从代码中能够看出。SW_RenderPresent()调用了一个函数SDL_UpdateWindowSurface()。我们看一下SDL_UpdateWindowSurface()的代码(位于video\SDL_video.c)。
int SDL_UpdateWindowSurface(SDL_Window * window)
{
SDL_Rect full_rect;
CHECK_WINDOW_MAGIC(window, -1);
full_rect.x = 0;
full_rect.y = 0;
full_rect.w = window->w;
full_rect.h = window->h;
return SDL_UpdateWindowSurfaceRects(window, &full_rect, 1);
}
SDL_UpdateWindowSurface()又调用了还有一个函数SDL_UpdateWindowSurfaceRects()。继续看SDL_UpdateWindowSurfaceRects()的代码。
int SDL_UpdateWindowSurfaceRects(SDL_Window * window, const SDL_Rect * rects,
int numrects)
{
CHECK_WINDOW_MAGIC(window, -1);
if (!window->surface_valid) {
return SDL_SetError("Window surface is invalid, please call SDL_GetWindowSurface() to get a new surface");
}
return _this->UpdateWindowFramebuffer(_this, window, rects, numrects);
}
SDL_UpdateWindowSurfaceRects()调用了SDL_VideoDevice的UpdateWindowFramebuffer()函数。在“Windows视频驱动”的情况下。相当于调用了WIN_UpdateWindowFramebuffer()。
我们看一下该函数的代码(位于video\windows\SDL_windowsframebuffer.c)
int WIN_UpdateWindowFramebuffer(_THIS, SDL_Window * window, const SDL_Rect * rects, int numrects)
{
SDL_WindowData *data = (SDL_WindowData *) window->driverdata;
BitBlt(data->hdc, 0, 0, window->w, window->h, data->mdc, 0, 0, SRCCOPY);
return 0;
}
经过一系列的寻找之后,最终找到了Software渲染视频展示“资源”:BitBlt()性能。
版权声明:本文博主原创文章。博客,未经同意不得转载。
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/117099.html原文链接:https://javaforall.cn
边栏推荐
- Statistical inference: maximum likelihood estimation, Bayesian estimation and variance deviation decomposition
- Can novices speculate in stocks for 200 yuan? Is the securities account given by qiniu safe?
- Vim 基本配置和经常使用的命令
- This year, Jianzhi Tencent
- 【mysql】触发器
- 如何实现常见框架
- 7. Data permission annotation
- Study notes of grain Mall - phase I: Project Introduction
- 新型数据库、多维表格平台盘点 Notion、FlowUs、Airtable、SeaTable、维格表 Vika、飞书多维表格、黑帕云、织信 Informat、语雀
- Thinking about agile development
猜你喜欢
新型数据库、多维表格平台盘点 Notion、FlowUs、Airtable、SeaTable、维格表 Vika、飞书多维表格、黑帕云、织信 Informat、语雀
【论文解读】用于白内障分级/分类的机器学习技术
20220211 failure - maximum amount of data supported by mongodb
What key progress has been made in deep learning in 2021?
Reinforcement learning - learning notes 5 | alphago
No Yum source to install SPuG monitoring
面试官:Redis中有序集合的内部实现方式是什么?
Introduction to the use of SAP Fiori application index tool and SAP Fiori tools
Manifest of SAP ui5 framework json
【滑动窗口】第九届蓝桥杯省赛B组:日志统计
随机推荐
Seven original sins of embedded development
Study notes of grain Mall - phase I: Project Introduction
Is this the feeling of being spoiled by bytes?
What's the best way to get TFS to output each project to its own directory?
PHP saves session data to MySQL database
968 edit distance
967- letter combination of telephone number
过程化sql在定义变量上与c语言中的变量定义有什么区别
KDD 2022 | 通过知识增强的提示学习实现统一的对话式推荐
el-table表格——sortable排序 & 出现小数、%时排序错乱
New database, multidimensional table platform inventory note, flowus, airtable, seatable, Vig table Vika, Feishu multidimensional table, heipayun, Zhixin information, YuQue
js之遍历数组、字符串
What are RDB and AOF
Redis insert data garbled solution
Word bag model and TF-IDF
OAI 5g nr+usrp b210 installation and construction
Laravel笔记-自定义登录中新增登录5次失败锁账户功能(提高系统安全性)
Reinforcement learning - learning notes 5 | alphago
2022菲尔兹奖揭晓!首位韩裔许埈珥上榜,四位80后得奖,乌克兰女数学家成史上唯二获奖女性
js通过数组内容来获取数组下标