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

  /external/chromium_org/content/common/gpu/client/
gpu_video_decode_accelerator_host.cc 132 std::vector<uint32> texture_ids; local
142 texture_ids.push_back(buffer.texture_id());
146 decoder_route_id_, buffer_ids, texture_ids));
  /external/chromium_org/gpu/command_buffer/tests/
gl_copy_texture_CHROMIUM_unittest.cc 307 GLuint texture_ids[2]; local
308 glGenTextures(2, texture_ids);
311 glBindTexture(GL_TEXTURE_2D, texture_ids[0]);
314 glBindTexture(GL_TEXTURE_2D, texture_ids[1]);
326 EXPECT_EQ(texture_ids[1], static_cast<GLuint>(bound_texture));
332 EXPECT_EQ(texture_ids[0], static_cast<GLuint>(bound_texture));
335 glDeleteTextures(2, texture_ids);
  /external/chromium_org/gpu/command_buffer/service/
test_helper.cc 84 const GLuint* texture_ids = NULL; local
87 texture_ids = &texture_2d_ids[0];
90 texture_ids = &texture_cube_map_ids[0];
93 texture_ids = &texture_external_oes_ids[0];
96 texture_ids = &texture_rectangle_arb_ids[0];
105 .WillOnce(SetArrayArgument<1>(texture_ids,
106 texture_ids + array_size))
109 EXPECT_CALL(*gl, BindTexture(target, texture_ids[ii]))
  /external/chromium_org/media/filters/
gpu_video_decoder.cc 340 std::vector<uint32> texture_ids; local
345 &texture_ids,
351 DCHECK_EQ(count, texture_ids.size());
358 for (size_t i = 0; i < texture_ids.size(); ++i) {
360 next_picture_buffer_id_++, size, texture_ids[i], texture_mailboxes[i]));

Completed in 547 milliseconds