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

Unified Diff: gpu/command_buffer/service/framebuffer_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/framebuffer_manager.h
===================================================================
--- gpu/command_buffer/service/framebuffer_manager.h (revision 45605)
+++ gpu/command_buffer/service/framebuffer_manager.h (working copy)
@@ -25,12 +25,12 @@
public:
typedef scoped_refptr<FramebufferInfo> Ref;
- explicit FramebufferInfo(GLuint framebuffer_id)
- : framebuffer_id_(framebuffer_id) {
+ explicit FramebufferInfo(GLuint service_id)
+ : service_id_(service_id) {
}
- GLuint framebuffer_id() const {
- return framebuffer_id_;
+ GLuint service_id() const {
+ return service_id_;
}
// Attaches a renderbuffer to a particlar attachment.
@@ -39,7 +39,7 @@
GLenum attachment, RenderbufferManager::RenderbufferInfo* renderbuffer);
bool IsDeleted() {
- return framebuffer_id_ == 0;
+ return service_id_ == 0;
}
private:
@@ -49,12 +49,12 @@
~FramebufferInfo() { }
void MarkAsDeleted() {
- framebuffer_id_ = 0;
+ service_id_ = 0;
renderbuffers_.clear();
}
// Service side framebuffer id.
- GLuint framebuffer_id_;
+ GLuint service_id_;
// A map of attachments to renderbuffers.
typedef std::map<GLenum, RenderbufferManager::RenderbufferInfo::Ref>
@@ -65,13 +65,13 @@
FramebufferManager() { }
// Creates a FramebufferInfo for the given framebuffer.
- void CreateFramebufferInfo(GLuint framebuffer_id);
+ void CreateFramebufferInfo(GLuint client_id, GLuint service_id);
// Gets the framebuffer info for the given framebuffer.
- FramebufferInfo* GetFramebufferInfo(GLuint framebuffer_id);
+ FramebufferInfo* GetFramebufferInfo(GLuint client_id);
// Removes a framebuffer info for the given framebuffer.
- void RemoveFramebufferInfo(GLuint framebuffer_id);
+ void RemoveFramebufferInfo(GLuint client_id);
private:
// Info for each framebuffer in the system.
« no previous file with comments | « gpu/command_buffer/service/context_group_unittest.cc ('k') | gpu/command_buffer/service/framebuffer_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698