glpy/include/glpy.h
2024-06-29 17:32:40 +08:00

10 lines
341 B
C++

#pragma once
#include<pybind11/pybind11.h>
#include<pybind11/stl.h>
namespace py = pybind11;
namespace tests{
int glfw_shader(unsigned width,unsigned height, std::string title);
int glfw_black_window(unsigned width,unsigned height,std::string title);
int glfw_basic_triangle(unsigned width,unsigned height, std::string title);
}