HomeSort by relevance Sort by last modified time
    Searched refs:texture_ids (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/media/filters/
gpu_video_decoder_factories.h 33 std::vector<uint32>* texture_ids,
mock_gpu_video_decoder_factories.h 32 std::vector<uint32>* texture_ids,
gpu_video_decoder.cc 342 std::vector<uint32> texture_ids; local
349 &texture_ids,
355 DCHECK_EQ(count, texture_ids.size());
362 for (size_t i = 0; i < texture_ids.size(); ++i) {
364 next_picture_buffer_id_++, size, texture_ids[i], texture_mailboxes[i]));
  /external/chromium_org/content/common/gpu/media/
gpu_video_decode_accelerator.cc 219 const std::vector<uint32>& texture_ids,
222 if (buffer_ids.size() != texture_ids.size() ||
240 texture_ids[i]);
242 DLOG(FATAL) << "Failed to find texture id " << texture_ids[i];
249 << texture_ids[i];
259 DLOG(FATAL) << "Size mismatch for texture id " << texture_ids[i];
265 DLOG(FATAL) << "Failed to Clear texture id " << texture_ids[i];
271 texture_ids[i], &service_texture_id)) {
gpu_video_decode_accelerator.h 65 const std::vector<uint32>& texture_ids,
  /external/chromium_org/gpu/command_buffer/service/
test_helper.cc 83 const GLuint* texture_ids = NULL; local
86 texture_ids = &texture_2d_ids[0];
89 texture_ids = &texture_cube_map_ids[0];
92 texture_ids = &texture_external_oes_ids[0];
95 texture_ids = &texture_rectangle_arb_ids[0];
104 .WillOnce(SetArrayArgument<1>(texture_ids,
105 texture_ids + array_size))
108 EXPECT_CALL(*gl, BindTexture(target, texture_ids[ii]))
  /external/chromium_org/content/common/gpu/client/
gpu_video_decode_accelerator_host.cc 105 std::vector<uint32> texture_ids; local
109 texture_ids.push_back(buffer.texture_id());
114 decoder_route_id_, buffer_ids, texture_ids, sizes));
  /external/chromium_org/gpu/command_buffer/tests/
gl_copy_texture_CHROMIUM_unittest.cc 303 GLuint texture_ids[2]; local
304 glGenTextures(2, texture_ids);
307 glBindTexture(GL_TEXTURE_2D, texture_ids[0]);
310 glBindTexture(GL_TEXTURE_2D, texture_ids[1]);
322 EXPECT_EQ(texture_ids[1], static_cast<GLuint>(bound_texture));
328 EXPECT_EQ(texture_ids[0], static_cast<GLuint>(bound_texture));
331 glDeleteTextures(2, texture_ids);
  /external/chromium_org/content/renderer/media/
renderer_gpu_video_decoder_factories.cc 112 std::vector<uint32>* texture_ids,
119 texture_ids->swap(created_textures_);
132 texture_ids->swap(created_textures_);
renderer_gpu_video_decoder_factories.h 55 std::vector<uint32>* texture_ids,
rtc_video_decoder.cc 276 std::vector<uint32> texture_ids;
283 &texture_ids,
289 DCHECK_EQ(count, texture_ids.size());
293 for (size_t i = 0; i < texture_ids.size(); ++i) {
295 next_picture_buffer_id_++, size, texture_ids[i], texture_mailboxes[i]));

Completed in 234 milliseconds