- 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.
- 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.