Changes

555 bytes added ,  00:54, 25 September 2021
no edit summary
Line 130: Line 130:     
''For example the current ''''devkitPro\examples\wii\graphics\gx\triangle.c'''' uses 'Mtx' but it should be using 'Mtx44' - I fell into this trap, please be careful & take note of the above.''
 
''For example the current ''''devkitPro\examples\wii\graphics\gx\triangle.c'''' uses 'Mtx' but it should be using 'Mtx44' - I fell into this trap, please be careful & take note of the above.''
 +
=== Timing ===
 +
Use:
 +
<source lang="c">
 +
#include <ogc/lwp_watchdog.h.h>
 +
 +
int main () {
 +
double deltaTime;
 +
uint64_t deltaTimeStart = gettime();
 +
while (1) {
 +
deltatime = (double)(gettime() - deltaTimeStart) / (double)(TB_TIMER_CLOCK * 1000); // division is to convert from ticks to seconds
 +
deltaTimeStart = gettime();
 +
//Do something
 +
}
 +
}
 +
</source>
 +
 +
Do not use clock() from time.h or any other library, clock() will return 4294967295 because the number of ticks is much larger than 32 bits.  The function body for gettime() can be found in timesupp.c.
 +
    
== GX Tips ==
 
== GX Tips ==