mirror of https://github.com/encounter/SDL.git
render: Added SDL_RenderFlush().
This commit is contained in:
parent
09140bd8bc
commit
1ecf4dfc5f
|
@ -876,6 +876,31 @@ extern DECLSPEC void SDLCALL SDL_DestroyTexture(SDL_Texture * texture);
|
||||||
*/
|
*/
|
||||||
extern DECLSPEC void SDLCALL SDL_DestroyRenderer(SDL_Renderer * renderer);
|
extern DECLSPEC void SDLCALL SDL_DestroyRenderer(SDL_Renderer * renderer);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* \brief Force the rendering context to flush any pending commands to the
|
||||||
|
* underlying rendering API.
|
||||||
|
*
|
||||||
|
* You do not need to (and in fact, shouldn't) call this function unless
|
||||||
|
* you are planning to call into OpenGL/Direct3D/Metal/whatever directly
|
||||||
|
* in addition to using an SDL_Renderer.
|
||||||
|
*
|
||||||
|
* This is for a very-specific case: if you are using SDL's render API,
|
||||||
|
* you asked for a specific renderer backend (OpenGL, Direct3D, etc),
|
||||||
|
* you set SDL_HINT_RENDER_BATCHING to "1", and you plan to make
|
||||||
|
* OpenGL/D3D/whatever calls in addition to SDL render API calls. If all of
|
||||||
|
* this applies, you should call SDL_RenderFlush() between calls to SDL's
|
||||||
|
* render API and the low-level API you're using in cooperation.
|
||||||
|
*
|
||||||
|
* In all other cases, you can ignore this function. This is only here to
|
||||||
|
* get maximum performance out of a specific situation. In all other cases,
|
||||||
|
* SDL will do the right thing, perhaps at a performance loss.
|
||||||
|
*
|
||||||
|
* This function is first available in SDL 2.0.10, and is not needed in
|
||||||
|
* 2.0.9 and earlier, as earlier versions did not queue rendering commands
|
||||||
|
* at all, instead flushing them to the OS immediately.
|
||||||
|
*/
|
||||||
|
extern DECLSPEC int SDLCALL SDL_RenderFlush(SDL_Renderer * renderer);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* \brief Bind the texture to the current OpenGL/ES/ES2 context for use with
|
* \brief Bind the texture to the current OpenGL/ES/ES2 context for use with
|
||||||
|
|
|
@ -696,3 +696,4 @@
|
||||||
#define SDL_SensorUpdate SDL_SensorUpdate_REAL
|
#define SDL_SensorUpdate SDL_SensorUpdate_REAL
|
||||||
#define SDL_IsTablet SDL_IsTablet_REAL
|
#define SDL_IsTablet SDL_IsTablet_REAL
|
||||||
#define SDL_GetDisplayOrientation SDL_GetDisplayOrientation_REAL
|
#define SDL_GetDisplayOrientation SDL_GetDisplayOrientation_REAL
|
||||||
|
#define SDL_RenderFlush SDL_RenderFlush_REAL
|
||||||
|
|
|
@ -738,3 +738,4 @@ SDL_DYNAPI_PROC(void,SDL_SensorClose,(SDL_Sensor *a),(a),)
|
||||||
SDL_DYNAPI_PROC(void,SDL_SensorUpdate,(void),(),)
|
SDL_DYNAPI_PROC(void,SDL_SensorUpdate,(void),(),)
|
||||||
SDL_DYNAPI_PROC(SDL_bool,SDL_IsTablet,(void),(),return)
|
SDL_DYNAPI_PROC(SDL_bool,SDL_IsTablet,(void),(),return)
|
||||||
SDL_DYNAPI_PROC(SDL_DisplayOrientation,SDL_GetDisplayOrientation,(int a),(a),return)
|
SDL_DYNAPI_PROC(SDL_DisplayOrientation,SDL_GetDisplayOrientation,(int a),(a),return)
|
||||||
|
SDL_DYNAPI_PROC(int,SDL_RenderFlush,(SDL_Renderer *a),(a),return)
|
||||||
|
|
|
@ -254,6 +254,12 @@ FlushRenderCommandsIfNotBatching(SDL_Renderer *renderer)
|
||||||
return renderer->batching ? 0 : FlushRenderCommands(renderer);
|
return renderer->batching ? 0 : FlushRenderCommands(renderer);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int
|
||||||
|
SDL_RenderFlush(SDL_Renderer * renderer)
|
||||||
|
{
|
||||||
|
return FlushRenderCommands(renderer);
|
||||||
|
}
|
||||||
|
|
||||||
static SDL_AllocVertGap *
|
static SDL_AllocVertGap *
|
||||||
AllocateVertexGap(SDL_Renderer *renderer)
|
AllocateVertexGap(SDL_Renderer *renderer)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue