- SDL_RendererFlags
alias SDL_RendererFlags = uint
Undocumented in source.
- pSDL_CreateRenderer
alias pSDL_CreateRenderer = SDL_Renderer* function(SDL_Window* window, int index, SDL_RendererFlags flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_CreateSoftwareRenderer
alias pSDL_CreateSoftwareRenderer = SDL_Renderer* function(SDL_Surface* surface)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_CreateTexture
alias pSDL_CreateTexture = SDL_Texture* function(SDL_Renderer* renderer, uint format, SDL_TextureAccess access, int w, int h)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_CreateTextureFromSurface
alias pSDL_CreateTextureFromSurface = SDL_Texture* function(SDL_Renderer* renderer, SDL_Surface* surface)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_CreateWindowAndRenderer
alias pSDL_CreateWindowAndRenderer = int function(int width, int height, uint window_flags, SDL_Window** window, SDL_Renderer** renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_DestroyRenderer
alias pSDL_DestroyRenderer = void function(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_DestroyTexture
alias pSDL_DestroyTexture = void function(SDL_Texture* texture)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GL_BindTexture
alias pSDL_GL_BindTexture = int function(SDL_Texture* texture, float* texw, float* texh)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GL_UnbindTexture
alias pSDL_GL_UnbindTexture = int function(SDL_Texture* texture)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GetNumRenderDrivers
alias pSDL_GetNumRenderDrivers = int function()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GetRenderDrawBlendMode
alias pSDL_GetRenderDrawBlendMode = int function(SDL_Renderer* renderer, SDL_BlendMode* blendMode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GetRenderDrawColor
alias pSDL_GetRenderDrawColor = int function(SDL_Renderer* renderer, ubyte* r, ubyte* g, ubyte* b, ubyte* a)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GetRenderDriverInfo
alias pSDL_GetRenderDriverInfo = int function(int index, SDL_RendererInfo* info)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GetRenderTarget
alias pSDL_GetRenderTarget = SDL_Texture* function(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GetRenderer
alias pSDL_GetRenderer = SDL_Renderer* function(SDL_Window* window)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GetRendererInfo
alias pSDL_GetRendererInfo = int function(SDL_Renderer* renderer, SDL_RendererInfo* info)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GetRendererOutputSize
alias pSDL_GetRendererOutputSize = int function(SDL_Renderer* renderer, int* w, int* h)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GetTextureAlphaMod
alias pSDL_GetTextureAlphaMod = int function(SDL_Texture* texture, ubyte* alpha)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GetTextureBlendMode
alias pSDL_GetTextureBlendMode = int function(SDL_Texture* texture, SDL_BlendMode* blendMode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GetTextureColorMod
alias pSDL_GetTextureColorMod = int function(SDL_Texture* texture, ubyte* r, ubyte* g, ubyte* b)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_GetTextureScaleMode
alias pSDL_GetTextureScaleMode = int function(SDL_Texture* texture, SDL_ScaleMode* scaleMode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_LockTexture
alias pSDL_LockTexture = int function(SDL_Texture* texture, const(SDL_Rect)* rect, void** pixels, int* pitch)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_LockTextureToSurface
alias pSDL_LockTextureToSurface = int function(SDL_Texture* texture, const(SDL_Rect)* rect, SDL_Surface** surface)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_QueryTexture
alias pSDL_QueryTexture = int function(SDL_Texture* texture, uint* format, SDL_TextureAccess* access, int* w, int* h)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderClear
alias pSDL_RenderClear = int function(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderCopy
alias pSDL_RenderCopy = int function(SDL_Renderer* renderer, SDL_Texture* texture, const(SDL_Rect)* srcrect, const(SDL_Rect)* dstrect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderCopyEx
alias pSDL_RenderCopyEx = int function(SDL_Renderer* renderer, SDL_Texture* texture, const(SDL_Rect)* srcrect, const(SDL_Rect)* dstrect, const(double) angle, const(SDL_Point)* center, const(SDL_RendererFlip) flip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderCopyExF
alias pSDL_RenderCopyExF = int function(SDL_Renderer* renderer, SDL_Texture* texture, const(SDL_FRect)* srcrect, const(SDL_FRect)* dstrect, const(double) angle, const(SDL_FPoint)* center, const(SDL_RendererFlip) flip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderCopyF
alias pSDL_RenderCopyF = int function(SDL_Renderer* renderer, SDL_Texture* texture, const(SDL_FRect)* srcrect, const(SDL_FRect)* dstrect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderDrawLine
alias pSDL_RenderDrawLine = int function(SDL_Renderer* renderer, int x1, int y1, int x2, int y2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderDrawLineF
alias pSDL_RenderDrawLineF = int function(SDL_Renderer* renderer, float x1, float y1, float x2, float y2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderDrawLines
alias pSDL_RenderDrawLines = int function(SDL_Renderer* renderer, const(SDL_Point)* points, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderDrawLinesF
alias pSDL_RenderDrawLinesF = int function(SDL_Renderer* renderer, const(SDL_FPoint)* points, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderDrawPoint
alias pSDL_RenderDrawPoint = int function(SDL_Renderer* renderer, int x, int y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderDrawPointF
alias pSDL_RenderDrawPointF = int function(SDL_Renderer* renderer, float x, float y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderDrawPoints
alias pSDL_RenderDrawPoints = int function(SDL_Renderer* renderer, const(SDL_Point)* points, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderDrawPointsF
alias pSDL_RenderDrawPointsF = int function(SDL_Renderer* renderer, const(SDL_FPoint)* points, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderDrawRect
alias pSDL_RenderDrawRect = int function(SDL_Renderer* renderer, const(SDL_Rect)* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderDrawRectF
alias pSDL_RenderDrawRectF = int function(SDL_Renderer* renderer, const(SDL_FRect)* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderDrawRects
alias pSDL_RenderDrawRects = int function(SDL_Renderer* renderer, const(SDL_Rect)* rects, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderDrawRectsF
alias pSDL_RenderDrawRectsF = int function(SDL_Renderer* renderer, const(SDL_FRect)* rects, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderFillRect
alias pSDL_RenderFillRect = int function(SDL_Renderer* renderer, const(SDL_Rect)* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderFillRectF
alias pSDL_RenderFillRectF = int function(SDL_Renderer* renderer, const(SDL_FRect)* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderFillRects
alias pSDL_RenderFillRects = int function(SDL_Renderer* renderer, const(SDL_Rect)* rects, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderFillRectsF
alias pSDL_RenderFillRectsF = int function(SDL_Renderer* renderer, const(SDL_FRect)* rects, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderFlush
alias pSDL_RenderFlush = int function(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderGetClipRect
alias pSDL_RenderGetClipRect = void function(SDL_Renderer* renderer, SDL_Rect* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderGetIntegerScale
alias pSDL_RenderGetIntegerScale = SDL_bool function(SDL_Renderer*)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderGetLogicalSize
alias pSDL_RenderGetLogicalSize = void function(SDL_Renderer* renderer, int* w, int* h)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderGetMetalCommandEncoder
alias pSDL_RenderGetMetalCommandEncoder = void* function(SDL_Renderer*)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderGetMetalLayer
alias pSDL_RenderGetMetalLayer = void* function(SDL_Renderer*)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderGetScale
alias pSDL_RenderGetScale = int function(SDL_Renderer* renderer, float* scaleX, float* scaleY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderGetViewport
alias pSDL_RenderGetViewport = void function(SDL_Renderer* renderer, SDL_Rect* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderIsClipEnabled
alias pSDL_RenderIsClipEnabled = SDL_bool function(SDL_Renderer*)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderPresent
alias pSDL_RenderPresent = void function(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderReadPixels
alias pSDL_RenderReadPixels = int function(SDL_Renderer* renderer, const(SDL_Rect)* rect, uint, void*, int)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderSetClipRect
alias pSDL_RenderSetClipRect = int function(SDL_Renderer* renderer, const(SDL_Rect)* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderSetIntegerScale
alias pSDL_RenderSetIntegerScale = int function(SDL_Renderer*, SDL_bool)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderSetLogicalSize
alias pSDL_RenderSetLogicalSize = int function(SDL_Renderer* renderer, int w, int h)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderSetScale
alias pSDL_RenderSetScale = int function(SDL_Renderer* renderer, float scaleX, float scaleY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderSetViewport
alias pSDL_RenderSetViewport = int function(SDL_Renderer* renderer, const(SDL_Rect)* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_RenderTargetSupported
alias pSDL_RenderTargetSupported = SDL_bool function(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_SetRenderDrawBlendMode
alias pSDL_SetRenderDrawBlendMode = int function(SDL_Renderer* renderer, SDL_BlendMode blendMode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_SetRenderDrawColor
alias pSDL_SetRenderDrawColor = int function(SDL_Renderer* renderer, ubyte r, ubyte g, ubyte b, ubyte a)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_SetRenderTarget
alias pSDL_SetRenderTarget = int function(SDL_Renderer* renderer, SDL_Texture* texture)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_SetTextureAlphaMod
alias pSDL_SetTextureAlphaMod = int function(SDL_Texture* texture, ubyte alpha)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_SetTextureBlendMode
alias pSDL_SetTextureBlendMode = int function(SDL_Texture* texture, SDL_BlendMode blendMode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_SetTextureColorMod
alias pSDL_SetTextureColorMod = int function(SDL_Texture* texture, ubyte r, ubyte g, ubyte b)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_SetTextureScaleMode
alias pSDL_SetTextureScaleMode = int function(SDL_Texture* texture, SDL_ScaleMode scaleMode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_UnlockTexture
alias pSDL_UnlockTexture = void function(SDL_Texture* texture)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_UpdateTexture
alias pSDL_UpdateTexture = int function(SDL_Texture* texture, const(SDL_Rect)* rect, const(void)* pixels, int pitch)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- pSDL_UpdateYUVTexture
alias pSDL_UpdateYUVTexture = int function(SDL_Texture* texture, const(SDL_Rect)* rect, const(ubyte)* Yplane, int Ypitch, const(ubyte)* Uplane, int Upitch, const(ubyte)* Vplane, int Vpitch)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_CreateRenderer
SDL_Renderer* SDL_CreateRenderer(SDL_Window* window, int index, SDL_RendererFlags flags)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_CreateSoftwareRenderer
SDL_Renderer* SDL_CreateSoftwareRenderer(SDL_Surface* surface)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_CreateTexture
SDL_Texture* SDL_CreateTexture(SDL_Renderer* renderer, uint format, SDL_TextureAccess access, int w, int h)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_CreateTextureFromSurface
SDL_Texture* SDL_CreateTextureFromSurface(SDL_Renderer* renderer, SDL_Surface* surface)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_CreateWindowAndRenderer
int SDL_CreateWindowAndRenderer(int width, int height, uint window_flags, SDL_Window** window, SDL_Renderer** renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_DestroyRenderer
void SDL_DestroyRenderer(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_DestroyTexture
void SDL_DestroyTexture(SDL_Texture* texture)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GL_BindTexture
int SDL_GL_BindTexture(SDL_Texture* texture, float* texw, float* texh)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GL_UnbindTexture
int SDL_GL_UnbindTexture(SDL_Texture* texture)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GetNumRenderDrivers
int SDL_GetNumRenderDrivers()
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GetRenderDrawBlendMode
int SDL_GetRenderDrawBlendMode(SDL_Renderer* renderer, SDL_BlendMode* blendMode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GetRenderDrawColor
int SDL_GetRenderDrawColor(SDL_Renderer* renderer, ubyte* r, ubyte* g, ubyte* b, ubyte* a)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GetRenderDriverInfo
int SDL_GetRenderDriverInfo(int index, SDL_RendererInfo* info)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GetRenderTarget
SDL_Texture* SDL_GetRenderTarget(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GetRenderer
SDL_Renderer* SDL_GetRenderer(SDL_Window* window)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GetRendererInfo
int SDL_GetRendererInfo(SDL_Renderer* renderer, SDL_RendererInfo* info)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GetRendererOutputSize
int SDL_GetRendererOutputSize(SDL_Renderer* renderer, int* w, int* h)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GetTextureAlphaMod
int SDL_GetTextureAlphaMod(SDL_Texture* texture, ubyte* alpha)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GetTextureBlendMode
int SDL_GetTextureBlendMode(SDL_Texture* texture, SDL_BlendMode* blendMode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GetTextureColorMod
int SDL_GetTextureColorMod(SDL_Texture* texture, ubyte* r, ubyte* g, ubyte* b)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_GetTextureScaleMode
int SDL_GetTextureScaleMode(SDL_Texture* texture, SDL_ScaleMode* scaleMode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_LockTexture
int SDL_LockTexture(SDL_Texture* texture, const(SDL_Rect)* rect, void** pixels, int* pitch)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_LockTextureToSurface
int SDL_LockTextureToSurface(SDL_Texture* texture, const(SDL_Rect)* rect, SDL_Surface** surface)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_QueryTexture
int SDL_QueryTexture(SDL_Texture* texture, uint* format, SDL_TextureAccess* access, int* w, int* h)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderClear
int SDL_RenderClear(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderCopy
int SDL_RenderCopy(SDL_Renderer* renderer, SDL_Texture* texture, const(SDL_Rect)* srcrect, const(SDL_Rect)* dstrect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderCopyEx
int SDL_RenderCopyEx(SDL_Renderer* renderer, SDL_Texture* texture, const(SDL_Rect)* srcrect, const(SDL_Rect)* dstrect, const(double) angle, const(SDL_Point)* center, const(SDL_RendererFlip) flip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderCopyExF
int SDL_RenderCopyExF(SDL_Renderer* renderer, SDL_Texture* texture, const(SDL_FRect)* srcrect, const(SDL_FRect)* dstrect, const(double) angle, const(SDL_FPoint)* center, const(SDL_RendererFlip) flip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderCopyF
int SDL_RenderCopyF(SDL_Renderer* renderer, SDL_Texture* texture, const(SDL_FRect)* srcrect, const(SDL_FRect)* dstrect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderDrawLine
int SDL_RenderDrawLine(SDL_Renderer* renderer, int x1, int y1, int x2, int y2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderDrawLineF
int SDL_RenderDrawLineF(SDL_Renderer* renderer, float x1, float y1, float x2, float y2)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderDrawLines
int SDL_RenderDrawLines(SDL_Renderer* renderer, const(SDL_Point)* points, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderDrawLinesF
int SDL_RenderDrawLinesF(SDL_Renderer* renderer, const(SDL_FPoint)* points, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderDrawPoint
int SDL_RenderDrawPoint(SDL_Renderer* renderer, int x, int y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderDrawPointF
int SDL_RenderDrawPointF(SDL_Renderer* renderer, float x, float y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderDrawPoints
int SDL_RenderDrawPoints(SDL_Renderer* renderer, const(SDL_Point)* points, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderDrawPointsF
int SDL_RenderDrawPointsF(SDL_Renderer* renderer, const(SDL_FPoint)* points, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderDrawRect
int SDL_RenderDrawRect(SDL_Renderer* renderer, const(SDL_Rect)* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderDrawRectF
int SDL_RenderDrawRectF(SDL_Renderer* renderer, const(SDL_FRect)* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderDrawRects
int SDL_RenderDrawRects(SDL_Renderer* renderer, const(SDL_Rect)* rects, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderDrawRectsF
int SDL_RenderDrawRectsF(SDL_Renderer* renderer, const(SDL_FRect)* rects, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderFillRect
int SDL_RenderFillRect(SDL_Renderer* renderer, const(SDL_Rect)* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderFillRectF
int SDL_RenderFillRectF(SDL_Renderer* renderer, const(SDL_FRect)* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderFillRects
int SDL_RenderFillRects(SDL_Renderer* renderer, const(SDL_Rect)* rects, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderFillRectsF
int SDL_RenderFillRectsF(SDL_Renderer* renderer, const(SDL_FRect)* rects, int count)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderFlush
int SDL_RenderFlush(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderGetClipRect
void SDL_RenderGetClipRect(SDL_Renderer* renderer, SDL_Rect* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderGetIntegerScale
SDL_bool SDL_RenderGetIntegerScale(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderGetLogicalSize
void SDL_RenderGetLogicalSize(SDL_Renderer* renderer, int* w, int* h)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderGetMetalCommandEncoder
void* SDL_RenderGetMetalCommandEncoder(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderGetMetalLayer
void* SDL_RenderGetMetalLayer(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderGetScale
int SDL_RenderGetScale(SDL_Renderer* renderer, float* scaleX, float* scaleY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderGetViewport
void SDL_RenderGetViewport(SDL_Renderer* renderer, SDL_Rect* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderIsClipEnabled
SDL_bool SDL_RenderIsClipEnabled(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderPresent
void SDL_RenderPresent(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderReadPixels
int SDL_RenderReadPixels(SDL_Renderer* renderer, const(SDL_Rect)* rect, uint , void* , int )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderSetClipRect
int SDL_RenderSetClipRect(SDL_Renderer* renderer, const(SDL_Rect)* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderSetIntegerScale
int SDL_RenderSetIntegerScale(SDL_Renderer* renderer, SDL_bool )
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderSetLogicalSize
int SDL_RenderSetLogicalSize(SDL_Renderer* renderer, int w, int h)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderSetScale
int SDL_RenderSetScale(SDL_Renderer* renderer, float scaleX, float scaleY)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderSetViewport
int SDL_RenderSetViewport(SDL_Renderer* renderer, const(SDL_Rect)* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_RenderTargetSupported
SDL_bool SDL_RenderTargetSupported(SDL_Renderer* renderer)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_SetRenderDrawBlendMode
int SDL_SetRenderDrawBlendMode(SDL_Renderer* renderer, SDL_BlendMode blendMode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_SetRenderDrawColor
int SDL_SetRenderDrawColor(SDL_Renderer* renderer, ubyte r, ubyte g, ubyte b, ubyte a)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_SetRenderTarget
int SDL_SetRenderTarget(SDL_Renderer* renderer, SDL_Texture* texture)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_SetTextureAlphaMod
int SDL_SetTextureAlphaMod(SDL_Texture* texture, ubyte alpha)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_SetTextureBlendMode
int SDL_SetTextureBlendMode(SDL_Texture* texture, SDL_BlendMode blendMode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_SetTextureColorMod
int SDL_SetTextureColorMod(SDL_Texture* texture, ubyte r, ubyte g, ubyte b)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_SetTextureScaleMode
int SDL_SetTextureScaleMode(SDL_Texture* texture, SDL_ScaleMode scaleMode)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_UnlockTexture
void SDL_UnlockTexture(SDL_Texture* texture)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_UpdateTexture
int SDL_UpdateTexture(SDL_Texture* texture, const(SDL_Rect)* rect, const(void)* pixels, int pitch)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_UpdateYUVTexture
int SDL_UpdateYUVTexture(SDL_Texture* texture, const(SDL_Rect)* rect, const(ubyte)* Yplane, int Ypitch, const(ubyte)* Uplane, int Upitch, const(ubyte)* Vplane, int Vpitch)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
- SDL_CreateRenderer
pSDL_CreateRenderer SDL_CreateRenderer;
Undocumented in source.
- SDL_CreateSoftwareRenderer
pSDL_CreateSoftwareRenderer SDL_CreateSoftwareRenderer;
Undocumented in source.
- SDL_CreateTexture
pSDL_CreateTexture SDL_CreateTexture;
Undocumented in source.
- SDL_CreateTextureFromSurface
pSDL_CreateTextureFromSurface SDL_CreateTextureFromSurface;
Undocumented in source.
- SDL_CreateWindowAndRenderer
pSDL_CreateWindowAndRenderer SDL_CreateWindowAndRenderer;
Undocumented in source.
- SDL_DestroyRenderer
pSDL_DestroyRenderer SDL_DestroyRenderer;
Undocumented in source.
- SDL_DestroyTexture
pSDL_DestroyTexture SDL_DestroyTexture;
Undocumented in source.
- SDL_GL_BindTexture
pSDL_GL_BindTexture SDL_GL_BindTexture;
Undocumented in source.
- SDL_GL_UnbindTexture
pSDL_GL_UnbindTexture SDL_GL_UnbindTexture;
Undocumented in source.
- SDL_GetNumRenderDrivers
pSDL_GetNumRenderDrivers SDL_GetNumRenderDrivers;
Undocumented in source.
- SDL_GetRenderDrawBlendMode
pSDL_GetRenderDrawBlendMode SDL_GetRenderDrawBlendMode;
Undocumented in source.
- SDL_GetRenderDrawColor
pSDL_GetRenderDrawColor SDL_GetRenderDrawColor;
Undocumented in source.
- SDL_GetRenderDriverInfo
pSDL_GetRenderDriverInfo SDL_GetRenderDriverInfo;
Undocumented in source.
- SDL_GetRenderTarget
pSDL_GetRenderTarget SDL_GetRenderTarget;
Undocumented in source.
- SDL_GetRenderer
pSDL_GetRenderer SDL_GetRenderer;
Undocumented in source.
- SDL_GetRendererInfo
pSDL_GetRendererInfo SDL_GetRendererInfo;
Undocumented in source.
- SDL_GetRendererOutputSize
pSDL_GetRendererOutputSize SDL_GetRendererOutputSize;
Undocumented in source.
- SDL_GetTextureAlphaMod
pSDL_GetTextureAlphaMod SDL_GetTextureAlphaMod;
Undocumented in source.
- SDL_GetTextureBlendMode
pSDL_GetTextureBlendMode SDL_GetTextureBlendMode;
Undocumented in source.
- SDL_GetTextureColorMod
pSDL_GetTextureColorMod SDL_GetTextureColorMod;
Undocumented in source.
- SDL_GetTextureScaleMode
pSDL_GetTextureScaleMode SDL_GetTextureScaleMode;
Undocumented in source.
- SDL_LockTexture
pSDL_LockTexture SDL_LockTexture;
Undocumented in source.
- SDL_LockTextureToSurface
pSDL_LockTextureToSurface SDL_LockTextureToSurface;
Undocumented in source.
- SDL_QueryTexture
pSDL_QueryTexture SDL_QueryTexture;
Undocumented in source.
- SDL_RenderClear
pSDL_RenderClear SDL_RenderClear;
Undocumented in source.
- SDL_RenderCopy
pSDL_RenderCopy SDL_RenderCopy;
Undocumented in source.
- SDL_RenderCopyEx
pSDL_RenderCopyEx SDL_RenderCopyEx;
Undocumented in source.
- SDL_RenderCopyExF
pSDL_RenderCopyExF SDL_RenderCopyExF;
Undocumented in source.
- SDL_RenderCopyF
pSDL_RenderCopyF SDL_RenderCopyF;
Undocumented in source.
- SDL_RenderDrawLine
pSDL_RenderDrawLine SDL_RenderDrawLine;
Undocumented in source.
- SDL_RenderDrawLineF
pSDL_RenderDrawLineF SDL_RenderDrawLineF;
Undocumented in source.
- SDL_RenderDrawLines
pSDL_RenderDrawLines SDL_RenderDrawLines;
Undocumented in source.
- SDL_RenderDrawLinesF
pSDL_RenderDrawLinesF SDL_RenderDrawLinesF;
Undocumented in source.
- SDL_RenderDrawPoint
pSDL_RenderDrawPoint SDL_RenderDrawPoint;
Undocumented in source.
- SDL_RenderDrawPointF
pSDL_RenderDrawPointF SDL_RenderDrawPointF;
Undocumented in source.
- SDL_RenderDrawPoints
pSDL_RenderDrawPoints SDL_RenderDrawPoints;
Undocumented in source.
- SDL_RenderDrawPointsF
pSDL_RenderDrawPointsF SDL_RenderDrawPointsF;
Undocumented in source.
- SDL_RenderDrawRect
pSDL_RenderDrawRect SDL_RenderDrawRect;
Undocumented in source.
- SDL_RenderDrawRectF
pSDL_RenderDrawRectF SDL_RenderDrawRectF;
Undocumented in source.
- SDL_RenderDrawRects
pSDL_RenderDrawRects SDL_RenderDrawRects;
Undocumented in source.
- SDL_RenderDrawRectsF
pSDL_RenderDrawRectsF SDL_RenderDrawRectsF;
Undocumented in source.
- SDL_RenderFillRect
pSDL_RenderFillRect SDL_RenderFillRect;
Undocumented in source.
- SDL_RenderFillRectF
pSDL_RenderFillRectF SDL_RenderFillRectF;
Undocumented in source.
- SDL_RenderFillRects
pSDL_RenderFillRects SDL_RenderFillRects;
Undocumented in source.
- SDL_RenderFillRectsF
pSDL_RenderFillRectsF SDL_RenderFillRectsF;
Undocumented in source.
- SDL_RenderFlush
pSDL_RenderFlush SDL_RenderFlush;
Undocumented in source.
- SDL_RenderGetClipRect
pSDL_RenderGetClipRect SDL_RenderGetClipRect;
Undocumented in source.
- SDL_RenderGetIntegerScale
pSDL_RenderGetIntegerScale SDL_RenderGetIntegerScale;
Undocumented in source.
- SDL_RenderGetLogicalSize
pSDL_RenderGetLogicalSize SDL_RenderGetLogicalSize;
Undocumented in source.
- SDL_RenderGetMetalCommandEncoder
pSDL_RenderGetMetalCommandEncoder SDL_RenderGetMetalCommandEncoder;
Undocumented in source.
- SDL_RenderGetMetalLayer
pSDL_RenderGetMetalLayer SDL_RenderGetMetalLayer;
Undocumented in source.
- SDL_RenderGetScale
pSDL_RenderGetScale SDL_RenderGetScale;
Undocumented in source.
- SDL_RenderGetViewport
pSDL_RenderGetViewport SDL_RenderGetViewport;
Undocumented in source.
- SDL_RenderIsClipEnabled
pSDL_RenderIsClipEnabled SDL_RenderIsClipEnabled;
Undocumented in source.
- SDL_RenderPresent
pSDL_RenderPresent SDL_RenderPresent;
Undocumented in source.
- SDL_RenderReadPixels
pSDL_RenderReadPixels SDL_RenderReadPixels;
Undocumented in source.
- SDL_RenderSetClipRect
pSDL_RenderSetClipRect SDL_RenderSetClipRect;
Undocumented in source.
- SDL_RenderSetIntegerScale
pSDL_RenderSetIntegerScale SDL_RenderSetIntegerScale;
Undocumented in source.
- SDL_RenderSetLogicalSize
pSDL_RenderSetLogicalSize SDL_RenderSetLogicalSize;
Undocumented in source.
- SDL_RenderSetScale
pSDL_RenderSetScale SDL_RenderSetScale;
Undocumented in source.
- SDL_RenderSetViewport
pSDL_RenderSetViewport SDL_RenderSetViewport;
Undocumented in source.
- SDL_RenderTargetSupported
pSDL_RenderTargetSupported SDL_RenderTargetSupported;
Undocumented in source.
- SDL_SetRenderDrawBlendMode
pSDL_SetRenderDrawBlendMode SDL_SetRenderDrawBlendMode;
Undocumented in source.
- SDL_SetRenderDrawColor
pSDL_SetRenderDrawColor SDL_SetRenderDrawColor;
Undocumented in source.
- SDL_SetRenderTarget
pSDL_SetRenderTarget SDL_SetRenderTarget;
Undocumented in source.
- SDL_SetTextureAlphaMod
pSDL_SetTextureAlphaMod SDL_SetTextureAlphaMod;
Undocumented in source.
- SDL_SetTextureBlendMode
pSDL_SetTextureBlendMode SDL_SetTextureBlendMode;
Undocumented in source.
- SDL_SetTextureColorMod
pSDL_SetTextureColorMod SDL_SetTextureColorMod;
Undocumented in source.
- SDL_SetTextureScaleMode
pSDL_SetTextureScaleMode SDL_SetTextureScaleMode;
Undocumented in source.
- SDL_UnlockTexture
pSDL_UnlockTexture SDL_UnlockTexture;
Undocumented in source.
- SDL_UpdateTexture
pSDL_UpdateTexture SDL_UpdateTexture;
Undocumented in source.
- SDL_UpdateYUVTexture
pSDL_UpdateYUVTexture SDL_UpdateYUVTexture;
Undocumented in source.