From bf045788e47cd14f858247f1940247ec6b185614 Mon Sep 17 00:00:00 2001 From: Octogonapus Date: Tue, 25 Jan 2022 10:09:12 -0500 Subject: [PATCH] Fix GLbyte definition for aarch64 --- Project.toml | 2 +- src/glTypes.jl | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Project.toml b/Project.toml index d1bb91b..adcd999 100644 --- a/Project.toml +++ b/Project.toml @@ -1,6 +1,6 @@ name = "ModernGL" uuid = "66fc600b-dfda-50eb-8b99-91cfa97b1301" -version = "1.1.4" +version = "1.1.5" [deps] Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb" diff --git a/src/glTypes.jl b/src/glTypes.jl index efb60f5..364cc25 100644 --- a/src/glTypes.jl +++ b/src/glTypes.jl @@ -9,7 +9,7 @@ const GLdouble = Cdouble const GLushort = Cushort const GLuint = Cuint const GLint64 = Clonglong -const GLbyte = Cchar +const GLbyte = Int8 const GLchar = Cuchar const GLubyte = Cuchar const GLintptr = Cptrdiff_t