mirror of
https://github.com/guezoloic/LearnOpenGL.git
synced 2026-01-25 12:34:15 +00:00
chore: lower case all files
This commit is contained in:
21
inc/ebo.hpp
Executable file
21
inc/ebo.hpp
Executable file
@@ -0,0 +1,21 @@
|
||||
#ifndef EBO_HPP
|
||||
#define EBO_HPP
|
||||
|
||||
#include <stddef.h>
|
||||
|
||||
#include "glad/glad.h"
|
||||
|
||||
|
||||
class EBO
|
||||
{
|
||||
private:
|
||||
GLuint id;
|
||||
|
||||
public:
|
||||
EBO(unsigned int* indices, size_t size);
|
||||
~EBO();
|
||||
|
||||
void bind();
|
||||
void unbind();
|
||||
};
|
||||
#endif
|
||||
Reference in New Issue
Block a user