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

Unified Diff: gpu/command_buffer/service/texture_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/texture_manager.h
===================================================================
--- gpu/command_buffer/service/texture_manager.h (revision 45605)
+++ gpu/command_buffer/service/texture_manager.h (working copy)
@@ -27,8 +27,8 @@
public:
typedef scoped_refptr<TextureInfo> Ref;
- explicit TextureInfo(GLuint texture_id)
- : texture_id_(texture_id),
+ explicit TextureInfo(GLuint service_id)
+ : service_id_(service_id),
deleted_(false),
target_(0),
min_filter_(GL_NEAREST_MIPMAP_LINEAR),
@@ -46,8 +46,8 @@
bool CanRender() const;
// The service side OpenGL id of the texture.
- GLuint texture_id() const {
- return texture_id_;
+ GLuint service_id() const {
+ return service_id_;
}
// Returns the target this texure was first bound to or 0 if it has not
@@ -135,7 +135,7 @@
};
void MarkAsDeleted() {
- texture_id_ = 0;
+ service_id_ = 0;
deleted_ = true;
}
@@ -164,7 +164,7 @@
std::vector<std::vector<LevelInfo> > level_infos_;
// The id of the texure
- GLuint texture_id_;
+ GLuint service_id_;
// Whether this texture has been deleted.
bool deleted_;
@@ -234,14 +234,17 @@
}
// Creates a new texture info.
- TextureInfo* CreateTextureInfo(GLuint texture_id);
+ TextureInfo* CreateTextureInfo(GLuint client_id, GLuint service_id);
// Gets the texture info for the given texture.
- TextureInfo* GetTextureInfo(GLuint texture_id);
+ TextureInfo* GetTextureInfo(GLuint client_id);
// Removes a texture info.
- void RemoveTextureInfo(GLuint texture_id);
+ void RemoveTextureInfo(GLuint client_id);
+ // Gets a client id for a given service id.
+ bool GetClientId(GLuint service_id, GLuint* client_id) const;
+
TextureInfo* GetDefaultTextureInfo(GLenum target) {
return target == GL_TEXTURE_2D ? default_texture_2d_ :
default_texture_cube_map_;
« no previous file with comments | « gpu/command_buffer/service/shader_manager_unittest.cc ('k') | gpu/command_buffer/service/texture_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698