2013-10-04 12:13:59 -07:00
|
|
|
/******************************************************************************
|
|
|
|
Copyright (C) 2013 by Hugh Bailey <obs.jim@gmail.com>
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-10-14 04:21:15 -07:00
|
|
|
#pragma once
|
2013-10-04 08:55:33 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Okay, so GL error handling is.. unclean to work with. I don't want
|
|
|
|
* to have to keep typing out the same stuff over and over again do I'll just
|
|
|
|
* make a bunch of helper functions to make it a bit easier to handle errors
|
|
|
|
*/
|
|
|
|
|
2013-10-05 00:34:43 -07:00
|
|
|
static inline bool gl_success(const char *funcname)
|
2013-10-04 08:55:33 -07:00
|
|
|
{
|
|
|
|
GLenum errorcode = glGetError();
|
|
|
|
if (errorcode != GL_NO_ERROR) {
|
|
|
|
blog(LOG_ERROR, "%s failed, glGetError returned %u",
|
|
|
|
funcname, errorcode);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool gl_gen_textures(GLsizei num_texture, GLuint *textures)
|
|
|
|
{
|
|
|
|
glGenTextures(num_texture, textures);
|
2013-10-05 00:34:43 -07:00
|
|
|
return gl_success("glGenTextures");
|
2013-10-04 08:55:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool gl_bind_texture(GLenum target, GLuint texture)
|
|
|
|
{
|
|
|
|
glBindTexture(target, texture);
|
2013-10-05 00:34:43 -07:00
|
|
|
return gl_success("glBindTexture");
|
2013-10-04 08:55:33 -07:00
|
|
|
}
|
|
|
|
|
2013-10-11 11:41:36 -07:00
|
|
|
static inline void gl_delete_textures(GLsizei num_buffers, GLuint *buffers)
|
|
|
|
{
|
|
|
|
glDeleteTextures(num_buffers, buffers);
|
|
|
|
gl_success("glDeleteTextures");
|
|
|
|
}
|
|
|
|
|
2013-10-05 09:25:12 -07:00
|
|
|
static inline bool gl_gen_buffers(GLsizei num_buffers, GLuint *buffers)
|
|
|
|
{
|
|
|
|
glGenBuffers(num_buffers, buffers);
|
|
|
|
return gl_success("glGenBuffers");
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool gl_bind_buffer(GLenum target, GLuint buffer)
|
|
|
|
{
|
|
|
|
glBindBuffer(target, buffer);
|
|
|
|
return gl_success("glBindBuffer");
|
|
|
|
}
|
|
|
|
|
2013-10-11 11:41:36 -07:00
|
|
|
static inline void gl_delete_buffers(GLsizei num_buffers, GLuint *buffers)
|
|
|
|
{
|
|
|
|
glDeleteBuffers(num_buffers, buffers);
|
|
|
|
gl_success("glDeleteBuffers");
|
|
|
|
}
|
|
|
|
|
2013-10-10 12:37:03 -07:00
|
|
|
static inline bool gl_bind_renderbuffer(GLenum target, GLuint buffer)
|
|
|
|
{
|
|
|
|
glBindRenderbuffer(target, buffer);
|
|
|
|
return gl_success("glBindRendebuffer");
|
|
|
|
}
|
|
|
|
|
2013-10-12 16:28:10 -07:00
|
|
|
static inline bool gl_bind_framebuffer(GLenum target, GLuint buffer)
|
|
|
|
{
|
|
|
|
glBindFramebuffer(target, buffer);
|
|
|
|
return gl_success("glBindFramebuffer");
|
|
|
|
}
|
|
|
|
|
2013-10-12 12:35:38 -07:00
|
|
|
static inline bool gl_tex_param_f(GLenum target, GLenum param, GLfloat val)
|
|
|
|
{
|
|
|
|
glTexParameterf(target, param, val);
|
|
|
|
return gl_success("glTexParameterf");
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool gl_tex_param_i(GLenum target, GLenum param, GLint val)
|
|
|
|
{
|
|
|
|
glTexParameteri(target, param, val);
|
|
|
|
return gl_success("glTexParameteri");
|
|
|
|
}
|
|
|
|
|
2013-10-12 20:18:05 -07:00
|
|
|
static inline bool gl_active_texture(GLenum texture_id)
|
2013-10-12 12:35:38 -07:00
|
|
|
{
|
2013-10-12 20:18:05 -07:00
|
|
|
glActiveTexture(texture_id);
|
2013-10-12 12:35:38 -07:00
|
|
|
return gl_success("glActiveTexture");
|
|
|
|
}
|
|
|
|
|
2013-10-12 20:18:05 -07:00
|
|
|
static inline bool gl_enable(GLenum capability)
|
|
|
|
{
|
|
|
|
glEnable(capability);
|
|
|
|
return gl_success("glEnable");
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool gl_disable(GLenum capability)
|
|
|
|
{
|
|
|
|
glDisable(capability);
|
|
|
|
return gl_success("glDisable");
|
|
|
|
}
|
|
|
|
|
2013-10-10 17:39:56 -07:00
|
|
|
extern bool gl_init_face(GLenum target, GLenum type, uint32_t num_levels,
|
2013-10-05 09:25:12 -07:00
|
|
|
GLenum format, GLint internal_format, bool compressed,
|
|
|
|
uint32_t width, uint32_t height, uint32_t size, void ***p_data);
|
|
|
|
|
2013-10-10 17:39:56 -07:00
|
|
|
extern bool gl_copy_texture(struct gs_device *device,
|
|
|
|
GLuint dst, GLenum dst_target,
|
2013-10-12 16:28:10 -07:00
|
|
|
GLuint src, GLenum src_target,
|
2013-10-10 17:39:56 -07:00
|
|
|
uint32_t width, uint32_t height);
|
|
|
|
|
2013-10-11 13:00:39 -07:00
|
|
|
extern bool gl_create_buffer(GLenum target, GLuint *buffer, GLsizeiptr size,
|
2013-10-11 11:41:36 -07:00
|
|
|
const GLvoid *data, GLenum usage);
|
|
|
|
|
2013-10-11 13:00:39 -07:00
|
|
|
extern bool update_buffer(GLenum target, GLuint buffer, void *data,
|
|
|
|
size_t size);
|