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

Unified Diff: gpu/command_buffer/service/buffer_manager.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
Index: gpu/command_buffer/service/buffer_manager.h
===================================================================
--- gpu/command_buffer/service/buffer_manager.h (revision 45605)
+++ gpu/command_buffer/service/buffer_manager.h (working copy)
@@ -27,14 +27,14 @@
public:
typedef scoped_refptr<BufferInfo> Ref;
- explicit BufferInfo(GLuint buffer_id)
- : buffer_id_(buffer_id),
+ explicit BufferInfo(GLuint service_id)
+ : service_id_(service_id),
target_(0),
size_(0) {
}
- GLuint buffer_id() const {
- return buffer_id_;
+ GLuint service_id() const {
+ return service_id_;
}
GLenum target() const {
@@ -65,7 +65,7 @@
GLuint* max_value);
bool IsDeleted() {
- return buffer_id_ == 0;
+ return service_id_ == 0;
}
private:
@@ -103,7 +103,7 @@
~BufferInfo() { }
void MarkAsDeleted() {
- buffer_id_ = 0;
+ service_id_ = 0;
shadow_.reset();
ClearCache();
}
@@ -112,7 +112,7 @@
void ClearCache();
// Service side buffer id.
- GLuint buffer_id_;
+ GLuint service_id_;
// The type of buffer. 0 = unset, GL_BUFFER_ARRAY = vertex data,
// GL_ELEMENT_BUFFER_ARRAY = index data.
@@ -134,13 +134,13 @@
BufferManager() { }
// Creates a BufferInfo for the given buffer.
- void CreateBufferInfo(GLuint buffer_id);
+ void CreateBufferInfo(GLuint client_id, GLuint service_id);
// Gets the buffer info for the given buffer.
- BufferInfo* GetBufferInfo(GLuint buffer_id);
+ BufferInfo* GetBufferInfo(GLuint client_id);
// Removes a buffer info for the given buffer.
- void RemoveBufferInfo(GLuint buffer_id);
+ void RemoveBufferInfo(GLuint client_id);
private:
// Info for each buffer in the system.
« no previous file with comments | « gpu/command_buffer/client/gles2_implementation_unittest.cc ('k') | gpu/command_buffer/service/buffer_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698