diff options
author | Brett Weiland <brett_weiland@bpcspace.com> | 2023-01-23 11:49:25 -0600 |
---|---|---|
committer | Brett Weiland <brett_weiland@bpcspace.com> | 2023-01-23 11:49:25 -0600 |
commit | 61bd7df99d32b8c489383568afc53117ab1fa81f (patch) | |
tree | a1c05e252724ff9ee840cd163142738a4aab36f5 /mthread.hpp | |
parent | 17f12b3d14b7557bc93cd0c9a2273f3aec99712a (diff) |
commented some syncronization code, declared functions for plans of reorganizing code
Diffstat (limited to 'mthread.hpp')
-rw-r--r-- | mthread.hpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mthread.hpp b/mthread.hpp index c70647e..f59732c 100644 --- a/mthread.hpp +++ b/mthread.hpp @@ -61,9 +61,12 @@ class mthread { uint32_t x_min, x_max, y_min, y_max; uint32_t on_x, on_y; unsigned int divisions; - void render(); int state; struct mthread_divinfo divide(); + + void render(); //TODO + void render_area(); + void run(); }; |