1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
|
/*********************************************************************
*
* Copyright 2012 Intel Corporation
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use, copy,
* modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
* BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
* ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
*********************************************************************/
/*
* Auxiliary functions to compute the size of array/blob arguments.
*/
#ifndef _WIN32
#include <string.h>
#include "os_thread.hpp"
#include "glimports.hpp"
#include "glproc.hpp"
#include "glsize.hpp"
#include "eglsize.hpp"
#include "assert.h"
static int
bisect_val(int min, int max, bool is_valid_val(int val))
{
bool valid;
while (1) {
int try_val = min + (max - min + 1) / 2;
valid = is_valid_val(try_val);
if (min == max)
break;
if (valid)
min = try_val;
else
max = try_val - 1;
}
return valid ? min : -1;
}
static bool
is_valid_width(int val)
{
_glCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 0, 0, val, 1);
return _glGetError() == GL_NO_ERROR;
}
static bool
is_valid_height(int val)
{
_glCopyTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 0, 0, 1, val);
return _glGetError() == GL_NO_ERROR;
}
static int
detect_size(int *width_ret, int *height_ret)
{
GLint max_tex_size;
int width;
int height;
max_tex_size = 0;
_glGetIntegerv(GL_MAX_TEXTURE_SIZE, &max_tex_size);
width = bisect_val(1, max_tex_size, is_valid_width);
if (width < 0)
return -1;
height = bisect_val(1, max_tex_size, is_valid_height);
if (height < 0)
return -1;
*width_ret = width;
*height_ret = height;
return 0;
}
/* XXX */
static inline bool
can_unpack_subimage(void) {
return false;
}
static void
_eglCreateImageKHR_get_image_size(EGLImageKHR image, image_info *info)
{
GLuint fbo = 0;
GLuint orig_fbo = 0;
GLuint texture = 0;
GLuint orig_texture;
GLenum status;
_glGetIntegerv(GL_FRAMEBUFFER_BINDING, (GLint *)&orig_fbo);
_glGenFramebuffers(1, &fbo);
_glBindFramebuffer(GL_FRAMEBUFFER, fbo);
_glGetIntegerv(GL_TEXTURE_BINDING_2D, (GLint *)&orig_texture);
_glGenTextures(1, &texture);
_glBindTexture(GL_TEXTURE_2D, texture);
_glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, image);
info->width = 0;
info->height = 0;
_glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0,
GL_TEXTURE_2D, texture, 0);
status = _glCheckFramebufferStatus(GL_FRAMEBUFFER);
if (status == GL_FRAMEBUFFER_COMPLETE) {
if (detect_size(&info->width, &info->height) != 0)
os::log("%s: can't detect image size\n", __func__);
} else {
os::log("%s: error: %x\n", __func__, status);
}
/* Don't leak errors to the traced application. */
(void)_glGetError();
_glBindTexture(GL_TEXTURE_2D, orig_texture);
_glDeleteTextures(1, &texture);
_glBindFramebuffer(GL_FRAMEBUFFER, orig_fbo);
_glDeleteFramebuffers(1, &fbo);
}
static void
get_texture_2d_image(image_info *info)
{
GLuint fbo = 0;
GLint prev_fbo = 0;
GLint texture;
GLenum status;
_glGetIntegerv(GL_TEXTURE_BINDING_2D, &texture);
if (!texture)
return;
_glGetIntegerv(GL_FRAMEBUFFER_BINDING, &prev_fbo);
_glGenFramebuffers(1, &fbo);
_glBindFramebuffer(GL_FRAMEBUFFER, fbo);
_glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D,
texture, 0);
status = _glCheckFramebufferStatus(GL_FRAMEBUFFER);
if (status != GL_FRAMEBUFFER_COMPLETE)
os::log("%s: error: %d\n", __func__, status);
_glReadPixels(0, 0, info->width, info->height, info->format, info->type, info->pixels);
/* Don't leak errors to the traced application. */
(void)_glGetError();
_glBindFramebuffer(GL_FRAMEBUFFER, prev_fbo);
_glDeleteFramebuffers(1, &fbo);
}
struct image_info *
_EGLImageKHR_get_image_info(GLenum target, EGLImageKHR image)
{
GLuint tex;
GLint bound_tex = 0;
struct image_info *info;
info = new image_info;
memset(info, 0, sizeof *info);
info->internalformat = GL_RGBA;
info->format = GL_RGBA;
info->type = GL_UNSIGNED_BYTE;
_eglCreateImageKHR_get_image_size(image, info);
_glGenTextures(1, &tex);
_glGetIntegerv(GL_TEXTURE_BINDING_2D, &bound_tex);
_glBindTexture(GL_TEXTURE_2D, tex);
_glEGLImageTargetTexture2DOES(GL_TEXTURE_2D, image);
info->size = _glTexImage2D_size(info->format, info->type, info->width, info->height);
info->pixels = malloc(info->size);
get_texture_2d_image(info);
_glBindTexture(GL_TEXTURE_2D, bound_tex);
_glDeleteBuffers(1, &tex);
return info;
}
void
_EGLImageKHR_free_image_info(struct image_info *info)
{
free(info->pixels);
delete info;
}
#endif // !defined(_WIN32)
|