Searched refs:GL_RGB (Results 1 - 25 of 225) sorted by path

123456789

/external/chromium_org/cc/resources/
H A Dresource_provider.h585 GL_RGB, // RGB_565
H A Dtexture_uploader_unittest.cc82 case GL_RGB:
/external/chromium_org/content/common/gpu/client/
H A Dgl_helper.cc402 format = GL_RGB;
963 GL_RGB,
967 GL_RGB,
987 GL_TEXTURE_2D, 0, GL_RGB, 0, 0, size.width(), size.height(), 0);
H A Dgl_helper_readback_support.cc42 supports_format = SupportsFormat(GL_RGB, GL_UNSIGNED_SHORT_5_6_5);
141 *format = GL_RGB;
H A Dgl_helper_unittest.cc1189 format = GL_RGB;
/external/chromium_org/content/common/gpu/media/
H A Drendering_helper.cc201 GL_RGB,
205 GL_RGB,
H A Dvt_video_decode_accelerator.cc484 GL_RGB, // internal_format
/external/chromium_org/gpu/command_buffer/client/
H A Dgles2_implementation_unittest.cc2297 const GLenum kFormat = GL_RGB;
2355 const GLenum kFormat = GL_RGB;
2520 static const GLenum kFormat = GL_RGB;
2644 const GLenum kFormat = GL_RGB;
/external/chromium_org/gpu/command_buffer/common/
H A Dgles2_cmd_utils.cc354 case GL_RGB:
469 case GL_RGB:
625 return GL_RGB;
644 case GL_RGB:
668 case GL_RGB:
H A Dgles2_cmd_utils_implementation_autogen.h1072 0x1907, "GL_RGB",
2782 {GL_ALPHA, "GL_ALPHA"}, {GL_RGB, "GL_RGB"}, {GL_RGBA, "GL_RGBA"},
2948 {GL_RGB, "GL_RGB"},
2960 {GL_RGB, "GL_RGB"},
H A Dgles2_cmd_utils_unittest.cc98 kWidth, kHeight, GL_RGB, GL_UNSIGNED_BYTE, 1, &size, &unpadded_row_size,
173 kWidth, kHeight, GL_RGB, GL_UNSIGNED_SHORT_5_6_5, 1, &size,
193 kWidth, kHeight, GL_RGB, GL_UNSIGNED_BYTE, 1, &size, &unpadded_row_size,
199 kWidth, kHeight, GL_RGB, GL_UNSIGNED_BYTE, 2, &size, &unpadded_row_size,
206 kWidth, kHeight, GL_RGB, GL_UNSIGNED_BYTE, 4, &size, &unpadded_row_size,
213 kWidth, kHeight, GL_RGB, GL_UNSIGNED_BYTE, 8, &size, &unpadded_row_size,
227 EXPECT_EQ(4u, GLES2Util::RenderbufferBytesPerPixel(GL_RGB));
/external/chromium_org/gpu/command_buffer/service/
H A Dfeature_info.cc199 { GL_RGB, kRGBTypes, arraysize(kRGBTypes), },
485 texture_format_validators_[GL_RGB].AddValue(GL_FLOAT);
499 texture_format_validators_[GL_RGB].AddValue(GL_HALF_FLOAT_OES);
544 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB32F, width, width, 0, GL_RGB,
H A Dfeature_info_unittest.cc158 { GL_RGB, kRGBTypes, arraysize(kRGBTypes), },
209 { GL_RGB, kRGBTypes, arraysize(kRGBTypes), },
644 EXPECT_TRUE(info_->GetTextureFormatValidator(GL_RGB).IsValid(
654 EXPECT_FALSE(info_->GetTextureFormatValidator(GL_RGB).IsValid(
677 EXPECT_TRUE(info_->GetTextureFormatValidator(GL_RGB).IsValid(
687 EXPECT_FALSE(info_->GetTextureFormatValidator(GL_RGB).IsValid(
711 EXPECT_FALSE(info_->GetTextureFormatValidator(GL_RGB).IsValid(
721 EXPECT_TRUE(info_->GetTextureFormatValidator(GL_RGB).IsValid(
746 EXPECT_FALSE(info_->GetTextureFormatValidator(GL_RGB).IsValid(
756 EXPECT_TRUE(info_->GetTextureFormatValidator(GL_RGB)
[all...]
H A Dframebuffer_manager_unittest.cc407 const GLenum kFormat2 = GL_RGB;
H A Dgles2_cmd_copy_texture_chromium.cc334 (source_internal_format == GL_RGBA && dest_internal_format == GL_RGB);
H A Dgles2_cmd_decoder.cc2519 GL_RGBA : GL_RGB;
2542 GL_RGBA : GL_RGB;
2565 GL_RGBA : GL_RGB;
2641 (attrib_parser.alpha_size != 0 && v > 0) ? GL_RGBA : GL_RGB;
5617 case GL_RGB:
5643 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 1, 1, 0, GL_RGB,
5685 glReadPixels(0, 0, 1, 1, GL_RGB, GL_UNSIGNED_BYTE, &pixel);
7604 if ((format != GL_RGBA && format != GL_BGRA_EXT && format != GL_RGB &&
10189 return GL_RGB;
[all...]
H A Dgles2_cmd_decoder_unittest_drawing.cc317 const GLenum kFormat = GL_RGB;
H A Dgles2_cmd_decoder_unittest_framebuffers.cc387 const GLenum kFormat = GL_RGB;
538 ReadPixels(0, 0, kWidth, kHeight, GL_RGB, GL_UNSIGNED_BYTE, _))
545 GL_RGB,
659 GL_RGB,
672 GL_RGB,
685 GL_RGB,
698 GL_RGB,
710 GL_RGB,
722 GL_RGB,
734 GL_RGB,
[all...]
H A Dgles2_cmd_decoder_unittest_textures.cc376 GL_RGB,
2494 DoTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 16, 17, 0, GL_RGB, GL_FLOAT, 0, 0);
2517 DoTexImage2D(GL_TEXTURE_2D, 0, GL_RGB, 16, 17, 0, GL_RGB, GL_FLOAT, 0, 0);
2645 DoTexImage2D(GL_TEXTURE_2D, 0, GL_RGB32F, 16, 17, 0, GL_RGB, GL_FLOAT, 0, 0);
2659 GL_RGB,
2663 GL_RGB,
H A Dgles2_cmd_validation_implementation_autogen.h249 GL_ALPHA, GL_RGB, GL_RGBA,
319 GL_ALPHA, GL_LUMINANCE, GL_LUMINANCE_ALPHA, GL_RGB, GL_RGBA,
323 GL_ALPHA, GL_LUMINANCE, GL_LUMINANCE_ALPHA, GL_RGB, GL_RGBA,
H A Drenderbuffer_manager.cc187 return GL_RGB;
H A Dtest_helper.cc365 GL_RGB, GL_FLOAT, _))
H A Dtexture_manager.cc1343 (internal_format == GL_RGB32F && format == GL_RGB))) {
H A Dtexture_manager_unittest.cc1791 GL_RGB,
/external/chromium_org/gpu/command_buffer/tests/
H A Dgl_copy_texture_CHROMIUM_unittest.cc80 GLint src_formats[] = {GL_ALPHA, GL_RGB, GL_RGBA,
82 GLint dest_formats[] = {GL_RGB, GL_RGBA};

Completed in 614 milliseconds

123456789