728x90
반응형
glCreateShader
-
기본적인 Opengl 프로그램 만들기3D웹 프로그래밍/opengl 2020. 11. 18. 18:32
모든 Opengl 함수는 gl 로 시작한다. #include class simpleclear_app : public sb6::application { void init() { static const char title[] = "Simple Clear"; sb6::application::init(); memcpy(info.title, title, sizeof(title)); } virtual void render(double currentTime) { static const GLfloat red[] = { 1.0f, 0.0f, 0.0f, 1.0f }; glClearBufferfv(GL_COLOR, 0, red); } }; DECLARE_MAIN(simpleclear_app) ㅇ 해당 함수의 일부 인자타입을..