You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
330 B
22 lines
330 B
5 years ago
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <stdbool.h>
|
||
|
#include <math.h>
|
||
|
#include <unistd.h>
|
||
|
#include <assert.h>
|
||
|
|
||
|
#include <GLES3/gl3.h>
|
||
|
#include <EGL/egl.h>
|
||
|
#include <EGL/eglext.h>
|
||
|
|
||
|
#include "common/framebuffer.h"
|
||
|
#include "common/spinner.h"
|
||
|
|
||
|
int main(int argc, char** argv) {
|
||
|
int err;
|
||
|
|
||
|
spin(argc, argv);
|
||
|
|
||
|
return 0;
|
||
|
}
|