SDL2 API: 02.Video - 02 - 2D Accelerated Rendering Flashcards
SDL_ComposeCustomBlendMode
Compose a custom blend mode for renderers.
SDL_CreateRenderer
Create a 2D rendering context for a window.
SDL_CreateSoftwareRenderer
Create a 2D software rendering context for a surface.
SDL_CreateTexture
Create a texture for a rendering context.
SDL_CreateTextureFromSurface
Create a texture from an existing surface.
SDL_CreateWindowAndRenderer
Create a window and default renderer.
SDL_DestroyRenderer
Destroy the rendering context for a window and free associated textures.
SDL_DestroyTexture
Destroy the specified texture.
SDL_GL_BindTexture
Bind an OpenGL/ES/ES2 texture to the current context for use with OpenGL instructions when rendering OpenGL primitives directly.
SDL_GL_UnbindTexture
Unbind an OpenGL/ES/ES2 texture from the current context.
SDL_GetNumRenderDrivers
Get the number of 2D rendering drivers available for the current display.
SDL_GetRenderDrawBlendMode
Get the blend mode used for drawing operations.
SDL_GetRenderDrawColor
Get the color used for drawing operations (Rect, Line and Clear).
SDL_GetRenderDriverInfo
Get information about a specific 2D rendering driver for the current display.
SDL_GetRenderTarget
Get the current render target.
SDL_GetRenderer
Get the renderer associated with a window.
SDL_GetRendererInfo
Get information about a rendering context.
SDL_GetRendererOutputSize
Get the output size in pixels of a rendering context.
SDL_GetTextureAlphaMod
Get the additional alpha value multiplied into render copy operations.
SDL_GetTextureBlendMode
Get the blend mode used for texture copy operations.
SDL_GetTextureColorMod
Get the additional color value multiplied into render copy operations.
SDL_LockTexture
Lock a portion of the texture for write-only pixel access.
SDL_QueryTexture
Query the attributes of a texture.
SDL_RenderClear
Clear the current rendering target with the drawing color.
SDL_RenderCopy
Copy a portion of the texture to the current rendering target.
SDL_RenderCopyEx
Copy a portion of the texture to the current rendering target, optionally rotating it by angle around the given center and also flipping it top-bottom and/or left-right.
SDL_RenderDrawLine
Draw a line on the current rendering target.
SDL_RenderDrawLines
Draw a series of connected lines on the current rendering target.
SDL_RenderDrawPoint
Draw a point on the current rendering target.
SDL_RenderDrawPoints
Draw multiple points on the current rendering target.
SDL_RenderDrawRect
Draw a rectangle on the current rendering target.
SDL_RenderDrawRects
Draw some number of rectangles on the current rendering target.
SDL_RenderFillRect
Fill a rectangle on the current rendering target with the drawing color.
SDL_RenderFillRects
Fill some number of rectangles on the current rendering target with the drawing color.
SDL_RenderGetClipRect
Get the clip rectangle for the current target.
SDL_RenderGetIntegerScale
Get whether integer scales are forced for resolution-independent rendering.
SDL_RenderGetLogicalSize
Get device independent resolution for rendering.
SDL_RenderGetScale
Get the drawing scale for the current target.
SDL_RenderGetViewport
Get the drawing area for the current target.
SDL_RenderIsClipEnabled
Get whether clipping is enabled on the given renderer.
SDL_RenderPresent
Update the screen with any rendering performed since the previous call.
SDL_RenderReadPixels
Read pixels from the current rendering target.
SDL_RenderSetClipRect
Set the clip rectangle for rendering on the specified target.
SDL_RenderSetIntegerScale
Set whether to force integer scales for resolution-independent rendering.
SDL_RenderSetLogicalSize
Set a device independent resolution for rendering.
SDL_RenderSetScale
Set the drawing scale for rendering on the current target.
SDL_RenderSetViewport
Set the drawing area for rendering on the current target.
SDL_RenderTargetSupported
Determine whether a window supports the use of render targets.
SDL_SetRenderDrawBlendMode
Set the blend mode used for drawing operations (Fill and Line).
SDL_SetRenderDrawColor
Set the color used for drawing operations (Rect, Line and Clear).
SDL_SetRenderTarget
Set a texture as the current rendering target.
SDL_SetTextureAlphaMod
Set an additional alpha value multiplied into render copy operations.
SDL_SetTextureBlendMode
Set the blend mode for a texture, used by SDL_RenderCopy().
SDL_SetTextureColorMod
Set an additional color value multiplied into render copy operations.
SDL_UnlockTexture
Unlock a texture, uploading the changes to video memory, if needed.
SDL_UpdateTexture
Update the given texture rectangle with new pixel data.
SDL_UpdateYUVTexture
Update a rectangle within a planar YV12 or IYUV texture with new pixel data.