gl-helpers.c 3.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/******************************************************************************
    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/>.
******************************************************************************/

#include "gl-subsystem.h"

J
jp9000 已提交
20
bool gl_init_face(GLenum target, GLenum type, uint32_t num_levels,
21 22 23 24 25 26 27 28 29
		GLenum format, GLint internal_format, bool compressed,
		uint32_t width, uint32_t height, uint32_t size, void ***p_data)
{
	bool success = true;
	void **data = *p_data;
	uint32_t i;

	for (i = 0; i < num_levels; i++) {
		if (compressed) {
J
jp9000 已提交
30 31 32
			glCompressedTexImage2D(target, i, internal_format,
					width, height, 0, size,
					data ? *data : NULL);
33 34 35 36
			if (!gl_success("glCompressedTexImage2D"))
				success = false;

		} else {
J
jp9000 已提交
37 38
			glTexImage2D(target, i, internal_format, width, height,
					0, format, type, data ? *data : NULL);
39 40 41 42
			if (!gl_success("glTexImage2D"))
				success = false;
		}

J
jp9000 已提交
43 44
		if (data)
			data++;
45 46 47
		size   /= 4;
		width  /= 2;
		height /= 2;
48 49 50

		if (width  == 0) width  = 1;
		if (height == 0) height = 1;
51 52 53 54 55
	}

	*p_data = data;
	return success;
}
J
jp9000 已提交
56 57 58

bool gl_copy_texture(struct gs_device *device,
                     GLuint dst, GLenum dst_target,
J
jp9000 已提交
59
                     GLuint src, GLenum src_target,
J
jp9000 已提交
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
                     uint32_t width, uint32_t height)
{
	bool success = false;

	if (device->copy_type == COPY_TYPE_ARB) {
		glCopyImageSubData(src, src_target, 0, 0, 0, 0,
		                   dst, dst_target, 0, 0, 0, 0,
		                   width, height, 1);
		success = gl_success("glCopyImageSubData");

	} else if (device->copy_type == COPY_TYPE_NV) {
		glCopyImageSubDataNV(src, src_target, 0, 0, 0, 0,
		                     dst, dst_target, 0, 0, 0, 0,
		                     width, height, 1);
		success = gl_success("glCopyImageSubDataNV");

	} else if (device->copy_type == COPY_TYPE_FBO_BLIT) {
		/* TODO (implement FBOs) */
	}

	return success;
}
J
jp9000 已提交
82

83 84
bool gl_create_buffer(GLenum target, GLuint *buffer, GLsizeiptr size,
		const GLvoid *data, GLenum usage)
J
jp9000 已提交
85 86 87 88
{
	bool success;
	if (!gl_gen_buffers(1, buffer))
		return false;
89
	if (!gl_bind_buffer(target, *buffer))
J
jp9000 已提交
90 91
		return false;

92
	glBufferData(target, size, data, usage);
J
jp9000 已提交
93 94
	success = gl_success("glBufferData");

95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
	gl_bind_buffer(target, 0);
	return success;
}

bool update_buffer(GLenum target, GLuint buffer, void *data, size_t size)
{
	void *ptr;
	bool success = true;

	if (!gl_bind_buffer(target, buffer))
		return false;

	ptr = glMapBuffer(target, GL_WRITE_ONLY);
	success = gl_success("glMapBuffer");
	if (success && ptr) {
		memcpy(ptr, data, size);
		glUnmapBuffer(target);
	}

	gl_bind_buffer(target, 0);
J
jp9000 已提交
115 116
	return success;
}