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

Unified Diff: gpu/command_buffer/service/shader_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/shader_manager.h
===================================================================
--- gpu/command_buffer/service/shader_manager.h (revision 45605)
+++ gpu/command_buffer/service/shader_manager.h (working copy)
@@ -28,20 +28,24 @@
public:
typedef scoped_refptr<ShaderInfo> Ref;
- explicit ShaderInfo(GLuint shader_id)
- : shader_id_(shader_id) {
+ explicit ShaderInfo(GLuint service_id)
+ : service_id_(service_id) {
}
void Update(const std::string& source) {
source_ = source;
}
+ GLuint service_id() const {
+ return service_id_;
+ }
+
const std::string& source() {
return source_;
}
bool IsDeleted() {
- return shader_id_ == 0;
+ return service_id_ == 0;
}
private:
@@ -50,11 +54,11 @@
~ShaderInfo() { }
void MarkAsDeleted() {
- shader_id_ = 0;
+ service_id_ = 0;
}
// The shader this ShaderInfo is tracking.
- GLuint shader_id_;
+ GLuint service_id_;
// The shader source as passed to glShaderSource.
std::string source_;
@@ -64,15 +68,18 @@
}
// Creates a shader info for the given shader ID.
- void CreateShaderInfo(GLuint shader_id);
+ void CreateShaderInfo(GLuint client_id, GLuint service_id);
// Gets an existing shader info for the given shader ID. Returns NULL if none
// exists.
- ShaderInfo* GetShaderInfo(GLuint shader_id);
+ ShaderInfo* GetShaderInfo(GLuint client_id);
// Deletes the shader info for the given shader.
- void RemoveShaderInfo(GLuint shader_id);
+ void RemoveShaderInfo(GLuint client_id);
+ // Gets a client id for a given service id.
+ bool GetClientId(GLuint service_id, GLuint* client_id) const;
+
private:
// Info for each shader by service side shader Id.
typedef std::map<GLuint, ShaderInfo::Ref> ShaderInfoMap;
« no previous file with comments | « gpu/command_buffer/service/renderbuffer_manager_unittest.cc ('k') | gpu/command_buffer/service/shader_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698