16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-21 19:29:19 +02:00

Change size arguments type to GLsizeiptr

This commit is contained in:
docentYT
2026-05-11 23:41:43 +02:00
parent 6542021253
commit 4878afbffc
4 changed files with 10 additions and 10 deletions

View File

@@ -39,8 +39,8 @@ namespace gl
static void unbind(targets target);
static void unbind();
void allocate(targets target, int size, GLenum hint);
void upload(targets target, const void *data, int offset, int size);
void download(targets target, void *data, int offset, int size);
void allocate(targets target, GLsizeiptr size, GLenum hint);
void upload(targets target, const void *data, int offset, GLsizeiptr size);
void download(targets target, void *data, int offset, GLsizeiptr size);
};
}