/external/chromium_org/gpu/command_buffer/client/ |
gl_in_process_context.h | 36 int32 alpha_size; member in struct:gpu::GLInProcessContextAttribs
|
gl_in_process_context.cc | 138 const int32 ALPHA_SIZE = 0x3021; 152 if (attribs.alpha_size >= 0) { 153 attrib_vector.push_back(ALPHA_SIZE); 154 attrib_vector.push_back(attribs.alpha_size); 300 : alpha_size(-1),
|
/sdk/emulator/opengl/host/libs/Translator/EGL/ |
EglConfig.h | 41 EGLint alpha_size, 69 EGLint alpha_size);
|
EglConfig.cpp | 21 EGLint alpha_size, 42 m_buffer_size(red_size + green_size + blue_size + alpha_size), 46 m_alpha_size(alpha_size), 71 m_conformant(((red_size + green_size + blue_size + alpha_size > 0) && 115 EGLint alpha_size): 117 m_buffer_size(red_size + green_size + blue_size + alpha_size), 121 m_alpha_size(alpha_size),
|
EglImp.cpp | 294 EGLint alpha_size = 0; local 345 alpha_size = attrib_list[i+1]; 451 EglConfig dummy(red_size,green_size,blue_size,alpha_size,caveat,config_id,depth_size, [all...] |
/external/chromium_org/gpu/gles2_conform_support/egl/ |
display.cc | 149 EGLint alpha_size = 0; local 152 GetConfigAttrib(config, EGL_ALPHA_SIZE, &alpha_size); 158 attribs.push_back(alpha_size);
|
/external/chromium_org/third_party/libwebp/enc/ |
alpha.c | 333 size_t alpha_size = 0; local 340 filter, effort_level, &alpha_data, &alpha_size)) { 343 if (alpha_size != (uint32_t)alpha_size) { // Sanity check. 347 enc->alpha_data_size_ = (uint32_t)alpha_size;
|
/external/webp/src/enc/ |
alpha.c | 333 size_t alpha_size = 0; local 340 filter, effort_level, &alpha_data, &alpha_size)) { 343 if (alpha_size != (uint32_t)alpha_size) { // Sanity check. 347 enc->alpha_data_size_ = (uint32_t)alpha_size;
|
/external/qemu/distrib/sdl-1.2.15/src/video/photon/ |
SDL_ph_gl.c | 72 *value=this->gl_config.alpha_size; 360 fprintf(stderr, "ARGB: %d, %d, %d, %d\n", this->gl_config.alpha_size, this->gl_config.red_size, this->gl_config.green_size, this->gl_config.blue_size); 363 /* __QNXGL_BUILD_FORMAT(0, __QNXGL_COLOR_MODEL_RGB, this->gl_config.alpha_size,
|
/external/qemu/distrib/sdl-1.2.15/src/video/wincommon/ |
SDL_wingl.c | 208 GL_pfd.cAlphaBits = this->gl_config.alpha_size; 243 if ( this->gl_config.alpha_size ) { 245 *iAttr++ = this->gl_config.alpha_size;
|
/external/qemu/distrib/sdl-1.2.15/src/video/maccommon/ |
SDL_macgl.c | 59 attributes[i++] = this->gl_config.alpha_size;
|
/external/qemu/distrib/sdl-1.2.15/src/video/x11/ |
SDL_x11gl.c | 141 if( this->gl_config.alpha_size ) { 143 attribs[i++] = this->gl_config.alpha_size;
|
/external/chromium_org/third_party/libwebp/dec/ |
frame.c | 426 // alpha_size is the only one that scales as width x height. 427 const uint64_t alpha_size = (dec->alpha_data_ != NULL) ? local 432 + cache_size + alpha_size + ALIGN_MASK; 497 dec->alpha_plane_ = alpha_size ? (uint8_t*)mem : NULL; 498 mem += alpha_size;
|
webp.c | 151 // If an alpha chunk is found, *alpha_data and *alpha_size are set 157 size_t* const alpha_size) { 169 assert(alpha_size != NULL); 171 *alpha_size = 0; 212 *alpha_size = chunk_size;
|
/external/qemu/distrib/sdl-1.2.15/src/video/ |
SDL_sysvideo.h | 298 int alpha_size; member in struct:SDL_VideoDevice::__anon25017
|
SDL_video.c | 229 video->gl_config.alpha_size = 0; [all...] |
/external/webp/src/dec/ |
frame.c | 426 // alpha_size is the only one that scales as width x height. 427 const uint64_t alpha_size = (dec->alpha_data_ != NULL) ? local 432 + cache_size + alpha_size + ALIGN_MASK; 497 dec->alpha_plane_ = alpha_size ? (uint8_t*)mem : NULL; 498 mem += alpha_size;
|
webp.c | 151 // If an alpha chunk is found, *alpha_data and *alpha_size are set 157 size_t* const alpha_size) { 169 assert(alpha_size != NULL); 171 *alpha_size = 0; 212 *alpha_size = chunk_size;
|
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
SDL_sysvideo.cc | 512 if (_this->gl_config.alpha_size > 0 || bpp == 32)
|
/external/chromium_org/ui/gfx/codec/ |
png_codec_unittest.cc | 223 size_t alpha_size = palette_alpha->size(); local 224 png_set_tRNS(png_ptr, info_ptr, alpha_data, alpha_size, NULL); [all...] |
/external/chromium_org/webkit/common/gpu/ |
webgraphicscontext3d_in_process_command_buffer_impl.cc | 136 output_attribs->alpha_size = attributes.alpha ? 8 : 0; [all...] |