improve sw renderer
This commit is contained in:
parent
415d424057
commit
39ee0fefb7
89 changed files with 9380 additions and 2307 deletions
|
|
@ -15,10 +15,10 @@ bool pxl8_io_file_exists(const char* path);
|
|||
void pxl8_io_free_binary_data(u8* data);
|
||||
void pxl8_io_free_file_content(char* content);
|
||||
f64 pxl8_io_get_file_modified_time(const char* path);
|
||||
pxl8_result pxl8_io_read_binary_file(const char* path, u8** data, size_t* size);
|
||||
pxl8_result pxl8_io_read_file(const char* path, char** content, size_t* size);
|
||||
pxl8_result pxl8_io_write_binary_file(const char* path, const u8* data, size_t size);
|
||||
pxl8_result pxl8_io_write_file(const char* path, const char* content, size_t size);
|
||||
pxl8_result pxl8_io_read_binary_file(const char* path, u8** data, usize* size);
|
||||
pxl8_result pxl8_io_read_file(const char* path, char** content, usize* size);
|
||||
pxl8_result pxl8_io_write_binary_file(const char* path, const u8* data, usize size);
|
||||
pxl8_result pxl8_io_write_file(const char* path, const char* content, usize size);
|
||||
|
||||
bool pxl8_key_down(const pxl8_input_state* input, const char* key_name);
|
||||
bool pxl8_key_pressed(const pxl8_input_state* input, const char* key_name);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue