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

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

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
Index: gpu/command_buffer/client/gles2_implementation.cc
===================================================================
--- gpu/command_buffer/client/gles2_implementation.cc (revision 45605)
+++ gpu/command_buffer/client/gles2_implementation.cc (working copy)
@@ -350,8 +350,8 @@
#if defined(GLES2_SUPPORT_CLIENT_SIDE_BUFFERS)
GLint max_vertex_attribs;
GetIntegerv(GL_MAX_VERTEX_ATTRIBS, &max_vertex_attribs);
- id_allocator_.MarkAsUsed(kClientSideArrayId);
- id_allocator_.MarkAsUsed(kClientSideElementArrayId);
+ buffer_id_allocator_.MarkAsUsed(kClientSideArrayId);
+ buffer_id_allocator_.MarkAsUsed(kClientSideElementArrayId);
reserved_ids_[0] = kClientSideArrayId;
reserved_ids_[1] = kClientSideElementArrayId;
@@ -369,15 +369,17 @@
transfer_buffer_.Free(result_buffer_);
}
-void GLES2Implementation::MakeIds(GLsizei n, GLuint* ids) {
+void GLES2Implementation::MakeIds(
+ IdAllocator* id_allocator, GLsizei n, GLuint* ids) {
for (GLsizei ii = 0; ii < n; ++ii) {
- ids[ii] = id_allocator_.AllocateID();
+ ids[ii] = id_allocator->AllocateID();
}
}
-void GLES2Implementation::FreeIds(GLsizei n, const GLuint* ids) {
+void GLES2Implementation::FreeIds(
+ IdAllocator* id_allocator, GLsizei n, const GLuint* ids) {
for (GLsizei ii = 0; ii < n; ++ii) {
- id_allocator_.FreeID(ids[ii]);
+ id_allocator->FreeID(ids[ii]);
}
}
@@ -1180,7 +1182,7 @@
}
#if defined(GLES2_SUPPORT_CLIENT_SIDE_BUFFERS)
-bool GLES2Implementation::IsReservedId(GLuint id) {
+bool GLES2Implementation::IsBufferReservedId(GLuint id) {
for (size_t ii = 0; ii < arraysize(reserved_ids_); ++ii) {
if (id == reserved_ids_[ii]) {
return true;
@@ -1189,7 +1191,7 @@
return false;
}
#else
-bool GLES2Implementation::IsReservedId(GLuint) { // NOLINT
+bool GLES2Implementation::IsBufferReservedId(GLuint) { // NOLINT
return false;
}
#endif
@@ -1197,12 +1199,12 @@
#if defined(GLES2_SUPPORT_CLIENT_SIDE_BUFFERS)
void GLES2Implementation::BindBuffer(GLenum target, GLuint buffer) {
- if (IsReservedId(buffer)) {
+ if (IsBufferReservedId(buffer)) {
SetGLError(GL_INVALID_OPERATION);
return;
}
if (buffer != 0) {
- id_allocator_.MarkAsUsed(buffer);
+ buffer_id_allocator_.MarkAsUsed(buffer);
}
switch (target) {
case GL_ARRAY_BUFFER:
@@ -1218,7 +1220,7 @@
}
void GLES2Implementation::DeleteBuffers(GLsizei n, const GLuint* buffers) {
- FreeIds(n, buffers);
+ FreeIds(&buffer_id_allocator_, n, buffers);
for (GLsizei ii = 0; ii < n; ++ii) {
if (buffers[ii] == bound_array_buffer_id_) {
bound_array_buffer_id_ = 0;
« no previous file with comments | « gpu/command_buffer/client/gles2_implementation.h ('k') | gpu/command_buffer/client/gles2_implementation_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698