]> Git Repo - pov-display-rpi.git/blob - src/main.cpp
oops array indexing was off
[pov-display-rpi.git] / src / main.cpp
1 #include "common.h"
2 #include <iostream> // std::cout
3 #include <thread>   // std::thread
4 #include "display.h"
5 #include "render.h"
6
7 int main(int argc, char *argv[])
8 {
9     if(argc != 4){
10         printf("./exe (pathto video file) (fps) (fit type)\n \"(\" isnt included (fps) and (fit type) is an int");
11         exit(-1);
12     }
13     bool go = true;
14     bool swap = false;
15     uint16_t buffer[3][degreesIn][rings] = {0};
16
17     std::thread dis(display, &go, buffer, &swap);
18     std::thread ren(render16, argv[1], &go, buffer, std::stoi(argv[2]), &swap,(std::stoi(argv[3]))?true:false);
19     while (1)
20     {
21     }
22 }
This page took 0.024268 seconds and 4 git commands to generate.