2026-07-30 01:10:31 -04:00
|
|
|
/**
|
|
|
|
|
* @file draw.h
|
|
|
|
|
* @brief Declares the public draw API.
|
|
|
|
|
*/
|
|
|
|
|
|
2025-08-03 10:07:35 -04:00
|
|
|
#ifndef _DRAW_H_
|
|
|
|
|
#define _DRAW_H_
|
|
|
|
|
|
2026-07-30 01:10:31 -04:00
|
|
|
/**
|
|
|
|
|
* @brief Draw background.
|
|
|
|
|
* @param w Destination width.
|
|
|
|
|
* @param h Destination height.
|
|
|
|
|
*/
|
2026-05-06 23:18:42 -04:00
|
|
|
void akgl_draw_background(int w, int h);
|
2025-08-03 10:07:35 -04:00
|
|
|
|
|
|
|
|
#endif //_DRAW_H_
|