Add createFromBinary function (#573)

* Add createFromBinary function

* Indentation

---------

Co-authored-by: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com>
This commit is contained in:
Paris Oplopoios 2024-08-08 17:29:44 +03:00 committed by GitHub
parent 0cf5687e64
commit 860eacc7e6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -432,6 +432,25 @@ namespace OpenGL {
return m_handle != 0; return m_handle != 0;
} }
bool createFromBinary(const uint8_t* binary, size_t size, GLenum format) {
m_handle = glCreateProgram();
glProgramBinary(m_handle, format, binary, size);
GLint success;
glGetProgramiv(m_handle, GL_LINK_STATUS, &success);
if (!success) {
char buf[4096];
glGetProgramInfoLog(m_handle, 4096, nullptr, buf);
fprintf(stderr, "Failed to link program\nError: %s\n", buf);
glDeleteProgram(m_handle);
m_handle = 0;
}
return m_handle != 0;
}
GLuint handle() const { return m_handle; } GLuint handle() const { return m_handle; }
bool exists() const { return m_handle != 0; } bool exists() const { return m_handle != 0; }
void use() const { glUseProgram(m_handle); } void use() const { glUseProgram(m_handle); }