bindbc.kw.renderdriver

Undocumented in source.

Members

Aliases

KW_BlitSurfaceFunction
alias KW_BlitSurfaceFunction = void function(KW_RenderDriver* driver, KW_Surface* src, const KW_Rect* srcRect, KW_Surface* dst, const KW_Rect* dstRect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_CreateSurfaceFunction
alias KW_CreateSurfaceFunction = KW_Surface* function(KW_RenderDriver* driver, uint width, uint height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_CreateTextureFunction
alias KW_CreateTextureFunction = KW_Texture* function(KW_RenderDriver* driver, KW_Surface* src)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetClipRectFunction
alias KW_GetClipRectFunction = KW_bool function(KW_RenderDriver* driver, KW_Rect* clip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetPixelFunction
alias KW_GetPixelFunction = uint function(KW_RenderDriver* driver, KW_Surface* surface, uint px, uint py)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetSurfaceExtentsFunction
alias KW_GetSurfaceExtentsFunction = void function(KW_RenderDriver* driver, const KW_Surface* surface, uint* width, uint* height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetTextureExtentsFunction
alias KW_GetTextureExtentsFunction = void function(KW_RenderDriver* driver, KW_Texture* texture, uint* width, uint* height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetViewportSizeFunction
alias KW_GetViewportSizeFunction = void function(KW_RenderDriver* driver, KW_Rect* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_LoadFontFromMemoryFunction
alias KW_LoadFontFromMemoryFunction = KW_Font* function(KW_RenderDriver* driver, const void* fontMemory, ulong memSize, uint ptSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_LoadFontFunction
alias KW_LoadFontFunction = KW_Font* function(KW_RenderDriver* driver, const char* fontFile, uint ptSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_LoadSurfaceFunction
alias KW_LoadSurfaceFunction = KW_Surface* function(KW_RenderDriver* driver, const char* file)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_LoadTextureFunction
alias KW_LoadTextureFunction = KW_Texture* function(KW_RenderDriver* driver, const char* file)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_ReleaseDriverFunction
alias KW_ReleaseDriverFunction = void function(KW_RenderDriver* driver)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_ReleaseFontFunction
alias KW_ReleaseFontFunction = void function(KW_RenderDriver* driver, KW_Font* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_ReleaseSurfaceFunction
alias KW_ReleaseSurfaceFunction = void function(KW_RenderDriver* driver, KW_Surface* surface)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_ReleaseTextureFunction
alias KW_ReleaseTextureFunction = void function(KW_RenderDriver* driver, KW_Texture* texture)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RenderCopyFunction
alias KW_RenderCopyFunction = void function(KW_RenderDriver* driver, KW_Texture* src, const KW_Rect* clip, const KW_Rect* dstRect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RenderRectFunction
alias KW_RenderRectFunction = void function(KW_RenderDriver* driver, KW_Rect* rect, KW_Color color)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RenderTextFunction
alias KW_RenderTextFunction = KW_Texture* function(KW_RenderDriver* driver, KW_Font* font, const char* text, KW_Color color, int style)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_SetClipRectFunction
alias KW_SetClipRectFunction = void function(KW_RenderDriver* driver, const KW_Rect* clip, int force)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_UTF8TextSizeFunction
alias KW_UTF8TextSizeFunction = void function(KW_RenderDriver* driver, KW_Font* font, const char* text, uint* width, uint* height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_BlitSurface
alias pKW_BlitSurface = void function(KW_RenderDriver* driver, KW_Surface* src, const KW_Rect* srcRect, KW_Surface* dst, const KW_Rect* dstRect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_CreateSurface
alias pKW_CreateSurface = KW_Surface* function(KW_RenderDriver* driver, uint width, uint height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_CreateTexture
alias pKW_CreateTexture = KW_Texture* function(KW_RenderDriver* driver, KW_Surface* surface)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetClipRect
alias pKW_GetClipRect = KW_bool function(KW_RenderDriver* driver, KW_Rect* clip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetPixel
alias pKW_GetPixel = uint function(KW_RenderDriver* driver, KW_Surface* surface, uint x, uint y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetSurfaceExtents
alias pKW_GetSurfaceExtents = void function(KW_RenderDriver* driver, const KW_Surface* surface, uint* width, uint* height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetTextureExtents
alias pKW_GetTextureExtents = void function(KW_RenderDriver* driver, KW_Texture* texture, uint* width, uint* height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_GetViewportSize
alias pKW_GetViewportSize = void function(KW_RenderDriver* driver, KW_Rect* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_LoadFont
alias pKW_LoadFont = KW_Font* function(KW_RenderDriver* driver, const char* fontFile, uint ptSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_LoadFontFromMemory
alias pKW_LoadFontFromMemory = KW_Font* function(KW_RenderDriver* driver, const void* fontMemory, ulong memSize, uint ptSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_LoadSurface
alias pKW_LoadSurface = KW_Surface* function(KW_RenderDriver* driver, const char* file)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_LoadTexture
alias pKW_LoadTexture = KW_Texture* function(KW_RenderDriver* driver, const char* file)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_ReleaseFont
alias pKW_ReleaseFont = void function(KW_RenderDriver* driver, KW_Font* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_ReleaseRenderDriver
alias pKW_ReleaseRenderDriver = void function(KW_RenderDriver* driver)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_ReleaseSurface
alias pKW_ReleaseSurface = void function(KW_RenderDriver* driver, KW_Surface* surface)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_ReleaseTexture
alias pKW_ReleaseTexture = void function(KW_RenderDriver* driver, KW_Texture* texture)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RenderCopy
alias pKW_RenderCopy = void function(KW_RenderDriver* driver, KW_Texture* src, const KW_Rect* clip, const KW_Rect* dstRect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RenderRect
alias pKW_RenderRect = void function(KW_RenderDriver* driver, KW_Rect* rect, KW_Color color)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_RenderText
alias pKW_RenderText = KW_Texture* function(KW_RenderDriver* driver, KW_Font* font, const char* text, KW_Color color, int style)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_SetClipRect
alias pKW_SetClipRect = void function(KW_RenderDriver* driver, const KW_Rect* clip, int force)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
pKW_UTF8TextSize
alias pKW_UTF8TextSize = void function(KW_RenderDriver* driver, KW_Font* font, const char* text, uint* width, uint* height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Enums

KW_TTF_STYLE_NORMAL
anonymousenum KW_TTF_STYLE_NORMAL
Undocumented in source.

Functions

KW_BlitSurface
void KW_BlitSurface(KW_RenderDriver* driver, KW_Surface* src, KW_Rect* srcRect, KW_Surface* dst, KW_Rect* dstRect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_CreateSurface
KW_Surface* KW_CreateSurface(KW_RenderDriver* driver, uint width, uint height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_CreateTexture
KW_Texture* KW_CreateTexture(KW_RenderDriver* driver, KW_Surface* surface)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetClipRect
KW_bool KW_GetClipRect(KW_RenderDriver* driver, KW_Rect* clip)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetPixel
uint KW_GetPixel(KW_RenderDriver* driver, KW_Surface* surface, uint x, uint y)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetSurfaceExtents
void KW_GetSurfaceExtents(KW_RenderDriver* driver, KW_Surface* surface, uint* width, uint* height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetTextureExtents
void KW_GetTextureExtents(KW_RenderDriver* driver, KW_Texture* texture, uint* width, uint* height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_GetViewportSize
void KW_GetViewportSize(KW_RenderDriver* driver, KW_Rect* rect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_LoadFont
KW_Font* KW_LoadFont(KW_RenderDriver* driver, char* fontFile, uint ptSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_LoadFontFromMemory
KW_Font* KW_LoadFontFromMemory(KW_RenderDriver* driver, void* fontMemory, ulong memSize, uint ptSize)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_LoadSurface
KW_Surface* KW_LoadSurface(KW_RenderDriver* driver, char* file)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_LoadTexture
KW_Texture* KW_LoadTexture(KW_RenderDriver* driver, char* file)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_MultiplyColor
KW_Color KW_MultiplyColor(KW_Color color, float amount)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_ReleaseFont
void KW_ReleaseFont(KW_RenderDriver* driver, KW_Font* font)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_ReleaseRenderDriver
void KW_ReleaseRenderDriver(KW_RenderDriver* driver)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_ReleaseSurface
void KW_ReleaseSurface(KW_RenderDriver* driver, KW_Surface* surface)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_ReleaseTexture
void KW_ReleaseTexture(KW_RenderDriver* driver, KW_Texture* texture)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RenderCopy
void KW_RenderCopy(KW_RenderDriver* driver, KW_Texture* src, KW_Rect* clip, KW_Rect* dstRect)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RenderRect
void KW_RenderRect(KW_RenderDriver* driver, KW_Rect* rect, KW_Color color)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_RenderText
KW_Texture* KW_RenderText(KW_RenderDriver* driver, KW_Font* font, char* text, KW_Color color, int style)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_SetClipRect
void KW_SetClipRect(KW_RenderDriver* driver, KW_Rect* clip, int force)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.
KW_UTF8TextSize
void KW_UTF8TextSize(KW_RenderDriver* driver, KW_Font* font, char* text, uint* width, uint* height)
Undocumented in source but is binding to C. You might be able to learn more by searching the web for its name.

Static variables

KW_BlitSurface
pKW_BlitSurface KW_BlitSurface;
Undocumented in source.
KW_CreateSurface
pKW_CreateSurface KW_CreateSurface;
Undocumented in source.
KW_CreateTexture
pKW_CreateTexture KW_CreateTexture;
Undocumented in source.
KW_GetClipRect
pKW_GetClipRect KW_GetClipRect;
Undocumented in source.
KW_GetPixel
pKW_GetPixel KW_GetPixel;
Undocumented in source.
KW_GetSurfaceExtents
pKW_GetSurfaceExtents KW_GetSurfaceExtents;
Undocumented in source.
KW_GetTextureExtents
pKW_GetTextureExtents KW_GetTextureExtents;
Undocumented in source.
KW_GetViewportSize
pKW_GetViewportSize KW_GetViewportSize;
Undocumented in source.
KW_LoadFont
pKW_LoadFont KW_LoadFont;
Undocumented in source.
KW_LoadFontFromMemory
pKW_LoadFontFromMemory KW_LoadFontFromMemory;
Undocumented in source.
KW_LoadSurface
pKW_LoadSurface KW_LoadSurface;
Undocumented in source.
KW_LoadTexture
pKW_LoadTexture KW_LoadTexture;
Undocumented in source.
KW_ReleaseFont
pKW_ReleaseFont KW_ReleaseFont;
Undocumented in source.
KW_ReleaseRenderDriver
pKW_ReleaseRenderDriver KW_ReleaseRenderDriver;
Undocumented in source.
KW_ReleaseSurface
pKW_ReleaseSurface KW_ReleaseSurface;
Undocumented in source.
KW_ReleaseTexture
pKW_ReleaseTexture KW_ReleaseTexture;
Undocumented in source.
KW_RenderCopy
pKW_RenderCopy KW_RenderCopy;
Undocumented in source.
KW_RenderRect
pKW_RenderRect KW_RenderRect;
Undocumented in source.
KW_RenderText
pKW_RenderText KW_RenderText;
Undocumented in source.
KW_SetClipRect
pKW_SetClipRect KW_SetClipRect;
Undocumented in source.
KW_UTF8TextSize
pKW_UTF8TextSize KW_UTF8TextSize;
Undocumented in source.

Structs

KW_Color
struct KW_Color
Undocumented in source.
KW_Font
struct KW_Font
Undocumented in source.
KW_RenderDriver
struct KW_RenderDriver
Undocumented in source.
KW_Surface
struct KW_Surface
Undocumented in source.
KW_Texture
struct KW_Texture
Undocumented in source.

Meta