learnOpengl/main.cpp

11 lines
228 B
C++
Raw Normal View History

2023-10-09 17:22:29 +08:00
#include <iostream>
2023-10-12 15:07:58 +08:00
#include "texture.h"
2023-10-11 09:37:14 +08:00
#include "triangle.h"
#include "matrix.h"
2023-10-09 17:22:29 +08:00
int main(int argc, char **const argv) {
2023-10-12 15:07:58 +08:00
// TRIANGLE::Practice1();
// auto res = TEXTURE::Texture();
MATRIX::Matrix();
return 0 ;
2023-10-08 15:34:44 +08:00
}