Skip to content

Commit

Permalink
frame timer
Browse files Browse the repository at this point in the history
  • Loading branch information
bgates747 committed Aug 28, 2024
1 parent 585f434 commit 14536cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion video/pingo_3d.h
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,7 @@ typedef struct tag_Pingo3dControl {
auto stop = millis();
auto diff = stop - start;
float fps = 1000.0 / diff;
// printf("Render to %ux%u took %u ms (%.2f FPS)\n", m_width, m_height, diff, fps);
printf("Render to %ux%u took %u ms (%.2f FPS)\n", m_width, m_height, diff, fps);
//debug_log("Frame data: %02hX %02hX %02hX %02hX\n", m_frame->r, m_frame->g, m_frame->b, m_frame->a);
//debug_log("Final data: %02hX %02hX %02hX %02hX\n", dst_pix->r, dst_pix->g, dst_pix->b, dst_pix->a);
}
Expand Down

0 comments on commit 14536cd

Please sign in to comment.