| 10 | #include "configuration/config.h" |
| 11 | |
| 12 | static inline void _SetUndirty |
| 13 | ( |
| 14 | RG_Matrix C |
| 15 | ) { |
| 16 | ASSERT(C); |
| 17 | |
| 18 | C->dirty = false; |
| 19 | |
| 20 | if(RG_MATRIX_MAINTAIN_TRANSPOSE(C)) { |
| 21 | C->transposed->dirty = false; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | static void RG_Matrix_sync_deletions |
| 26 | ( |