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 105 std::vector<uint32> texture_ids; local
112 texture_ids.push_back(buffer.texture_id());
116 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 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/media/filters/
gpu_video_decoder.cc 362 std::vector<uint32> texture_ids; local
369 &texture_ids,
375 DCHECK_EQ(count, texture_ids.size());
382 for (size_t i = 0; i < texture_ids.size(); ++i) {
384 next_picture_buffer_id_++, size, texture_ids[i], texture_mailboxes[i]));

Completed in 3126 milliseconds