HomeSort by relevance Sort by last modified time
    Searched refs:IdAllocator (Results 1 - 8 of 8) 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 64 id_namespaces_[id_namespaces::kBuffers].reset(new IdAllocator);
65 id_namespaces_[id_namespaces::kFramebuffers].reset(new IdAllocator);
68 id_namespaces_[id_namespaces::kRenderbuffers].reset(new IdAllocator);
69 id_namespaces_[id_namespaces::kTextures].reset(new IdAllocator);
70 id_namespaces_[id_namespaces::kQueries].reset(new IdAllocator);
71 id_namespaces_[id_namespaces::kVertexArrays].reset(new IdAllocator);
  /external/chromium_org/cc/resources/
resource_provider.h 51 class IdAllocator;
536 scoped_ptr<IdAllocator> texture_id_allocator_;
537 scoped_ptr<IdAllocator> buffer_id_allocator_;
resource_provider.cc 36 class IdAllocator {
38 virtual ~IdAllocator() {}
43 IdAllocator(GLES2Interface* gl, size_t id_allocation_chunk_size)
135 class TextureIdAllocator : public IdAllocator {
139 : IdAllocator(gl, texture_id_allocation_chunk_size) {}
145 // Overridden from IdAllocator:
159 class BufferIdAllocator : public IdAllocator {
162 : IdAllocator(gl, buffer_id_allocation_chunk_size) {}
168 // Overridden from IdAllocator:
    [all...]
  /external/chromium_org/gpu/command_buffer/client/
share_group.cc 79 IdAllocator id_allocator_;
gles2_implementation.cc 196 query_id_allocator_.reset(new IdAllocator());
    [all...]

Completed in 151 milliseconds