aboutsummaryrefslogtreecommitdiff
path: root/include/mgl/graphics
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2021-10-30 04:22:07 +0200
committerdec05eba <dec05eba@protonmail.com>2021-10-30 04:22:07 +0200
commit8a316a12481282cb2ab966c4cbc770656c258383 (patch)
tree678b4efcaa4e47cb4f4d2bd29c90badbeac8789c /include/mgl/graphics
parent275e851e8a2b11c2efe7c39787bf331dd3b75272 (diff)
Add option to make mgl_file_load result null terminated
Diffstat (limited to 'include/mgl/graphics')
-rw-r--r--include/mgl/graphics/texture.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mgl/graphics/texture.h b/include/mgl/graphics/texture.h
index 7891dab..9e7a423 100644
--- a/include/mgl/graphics/texture.h
+++ b/include/mgl/graphics/texture.h
@@ -22,7 +22,7 @@ struct mgl_texture {
};
typedef struct {
- bool compressed;
+ bool compressed; /* false by default */
} mgl_texture_load_options;
/* |load_options| can be null, in which case the default options are used */