Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- VRChat
- indexbufferobject
- 쿼터니온
- 3d 기하학
- initialization
- 수학
- vertexattributeobject
- VRC
- OpenGL
- callbacks
- unity
- ibo
- Directx12
- Drawcall
- shaders
- liltoon
- bufferswap
- NVM
- vbo
- 회전행렬
- MongoDB
- vertexbufferobject
- react
- bufferobjects
- vao
- ReactJS
- kubernetes
- 수학 #기하학 #벡터 #벡터연산 #선형대수학
- LiV
- BeatSaber
Archives
- Today
- Total
목록Drawcall (1)
To Paint a World

GLApp 기본 구조#pragma once#include #include class GLApp {public: ~GLApp();public: void Run();public: virtual bool Initialize() = 0;protected: virtual void Update() = 0; virtual void Draw() = 0;protected: bool InitOpenGL();public: inline GLFWwindow* GetWindow() { return window; }protected: GLFWwindow* window; int width = 640; int height = 640;}; OpenGL 어플리케이션의 기능을 크게 네 ..
3D Engine/OpenGL
2024. 12. 26. 18:33