Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Unified Diff: gpu/command_buffer/client/gles2_implementation.h

Issue 1747013: Changes the code to use separate ids namspaces... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | gpu/command_buffer/client/gles2_implementation.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/client/gles2_implementation.h
===================================================================
--- gpu/command_buffer/client/gles2_implementation.h (revision 45605)
+++ gpu/command_buffer/client/gles2_implementation.h (working copy)
@@ -126,12 +126,18 @@
}
#endif
- // Makes a set of Ids for glGen___ functions.
- void MakeIds(GLsizei n, GLuint* ids);
+ void MakeIds(IdAllocator* id_allocator, GLsizei n, GLuint* ids);
- // Frees a set of Ids for glDelete___ functions.
- void FreeIds(GLsizei n, const GLuint* ids);
+ void FreeIds(IdAllocator* id_allocator, GLsizei n, const GLuint* ids);
+ GLuint MakeTextureId() {
+ return texture_id_allocator_.AllocateID();
+ }
+
+ void FreeTextureId(GLuint id) {
+ texture_id_allocator_.FreeID(id);
+ }
+
private:
// Wraps FencedAllocatorWrapper to provide aligned allocations.
class AlignedFencedAllocator : public FencedAllocatorWrapper {
@@ -203,7 +209,10 @@
void SetBucketAsString(uint32 bucket_id, const std::string& str);
// Returns true if id is reserved.
- bool IsReservedId(GLuint id);
+ bool IsBufferReservedId(GLuint id);
+ bool IsFramebufferReservedId(GLuint id) { return false; }
+ bool IsRenderbufferReservedId(GLuint id) { return false; }
+ bool IsTextureReservedId(GLuint id) { return false; }
#if defined(GLES2_SUPPORT_CLIENT_SIDE_BUFFERS)
// Helper for GetVertexAttrib
@@ -216,7 +225,11 @@
GLES2Util util_;
GLES2CmdHelper* helper_;
- IdAllocator id_allocator_;
+ IdAllocator buffer_id_allocator_;
+ IdAllocator framebuffer_id_allocator_;
+ IdAllocator renderbuffer_id_allocator_;
+ IdAllocator program_and_shader_id_allocator_;
+ IdAllocator texture_id_allocator_;
AlignedFencedAllocator transfer_buffer_;
int transfer_buffer_id_;
void* result_buffer_;
« no previous file with comments | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | gpu/command_buffer/client/gles2_implementation.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698