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

  /external/chromium_org/gpu/command_buffer/common/
id_allocator.cc 5 // This file contains the implementation of IdAllocator.
16 IdAllocator::IdAllocator() {}
18 IdAllocator::~IdAllocator() {}
20 ResourceId IdAllocator::AllocateID() {
36 ResourceId IdAllocator::AllocateIDAtOrAbove(ResourceId desired_id) {
54 bool IdAllocator::MarkAsUsed(ResourceId id) {
61 void IdAllocator::FreeID(ResourceId id) {
68 bool IdAllocator::InUse(ResourceId id) const
    [all...]
id_allocator.h 5 // This file contains the definition of the IdAllocator class.
48 class GPU_EXPORT IdAllocator : public IdAllocatorInterface {
50 IdAllocator();
51 virtual ~IdAllocator();
73 DISALLOW_COPY_AND_ASSIGN(IdAllocator);
id_allocator_test.cc 5 // This file has the unit tests for the IdAllocator class.
17 IdAllocator* id_allocator() { return &id_allocator_; }
20 IdAllocator id_allocator_;
25 IdAllocator *allocator = id_allocator();
50 IdAllocator *allocator = id_allocator();
74 IdAllocator* allocator = id_allocator();
92 IdAllocator* allocator = id_allocator();
104 IdAllocator* allocator = id_allocator();
114 IdAllocator* allocator = id_allocator();
  /external/chromium_org/gpu/command_buffer/service/
context_group.cc 63 id_namespaces_[id_namespaces::kBuffers].reset(new IdAllocator);
64 id_namespaces_[id_namespaces::kFramebuffers].reset(new IdAllocator);
67 id_namespaces_[id_namespaces::kRenderbuffers].reset(new IdAllocator);
68 id_namespaces_[id_namespaces::kTextures].reset(new IdAllocator);
69 id_namespaces_[id_namespaces::kQueries].reset(new IdAllocator);
70 id_namespaces_[id_namespaces::kVertexArrays].reset(new IdAllocator);
  /external/chromium_org/cc/resources/
resource_provider.h 50 class IdAllocator;
653 scoped_ptr<IdAllocator> texture_id_allocator_;
654 scoped_ptr<IdAllocator> buffer_id_allocator_;
resource_provider.cc 37 class IdAllocator {
39 virtual ~IdAllocator() {}
44 IdAllocator(GLES2Interface* gl, size_t id_allocation_chunk_size)
145 class TextureIdAllocator : public IdAllocator {
149 : IdAllocator(gl, texture_id_allocation_chunk_size) {}
155 // Overridden from IdAllocator:
169 class BufferIdAllocator : public IdAllocator {
172 : IdAllocator(gl, buffer_id_allocation_chunk_size) {}
178 // Overridden from IdAllocator:
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
share_group.cc 79 IdAllocator id_allocator_;

Completed in 75 milliseconds