OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "gpu/command_buffer/service/shader_manager.h" | 5 #include "gpu/command_buffer/service/shader_manager.h" |
6 #include "base/logging.h" | 6 #include "base/logging.h" |
7 | 7 |
8 namespace gpu { | 8 namespace gpu { |
9 namespace gles2 { | 9 namespace gles2 { |
10 | 10 |
11 void ShaderManager::CreateShaderInfo(GLuint shader_id) { | 11 void ShaderManager::CreateShaderInfo(GLuint client_id, GLuint service_id) { |
12 std::pair<ShaderInfoMap::iterator, bool> result = | 12 std::pair<ShaderInfoMap::iterator, bool> result = |
13 shader_infos_.insert(std::make_pair( | 13 shader_infos_.insert(std::make_pair( |
14 shader_id, ShaderInfo::Ref(new ShaderInfo(shader_id)))); | 14 client_id, ShaderInfo::Ref(new ShaderInfo(service_id)))); |
15 DCHECK(result.second); | 15 DCHECK(result.second); |
16 } | 16 } |
17 | 17 |
18 ShaderManager::ShaderInfo* ShaderManager::GetShaderInfo(GLuint shader_id) { | 18 ShaderManager::ShaderInfo* ShaderManager::GetShaderInfo(GLuint client_id) { |
19 ShaderInfoMap::iterator it = shader_infos_.find(shader_id); | 19 ShaderInfoMap::iterator it = shader_infos_.find(client_id); |
20 return it != shader_infos_.end() ? it->second : NULL; | 20 return it != shader_infos_.end() ? it->second : NULL; |
21 } | 21 } |
22 | 22 |
23 void ShaderManager::RemoveShaderInfo(GLuint shader_id) { | 23 void ShaderManager::RemoveShaderInfo(GLuint client_id) { |
24 ShaderInfoMap::iterator it = shader_infos_.find(shader_id); | 24 ShaderInfoMap::iterator it = shader_infos_.find(client_id); |
25 if (it != shader_infos_.end()) { | 25 if (it != shader_infos_.end()) { |
26 it->second->MarkAsDeleted(); | 26 it->second->MarkAsDeleted(); |
27 shader_infos_.erase(it); | 27 shader_infos_.erase(it); |
28 } | 28 } |
29 } | 29 } |
30 | 30 |
| 31 bool ShaderManager::GetClientId(GLuint service_id, GLuint* client_id) const { |
| 32 // This doesn't need to be fast. It's only used during slow queries. |
| 33 for (ShaderInfoMap::const_iterator it = shader_infos_.begin(); |
| 34 it != shader_infos_.end(); ++it) { |
| 35 if (it->second->service_id() == service_id) { |
| 36 *client_id = it->first; |
| 37 return true; |
| 38 } |
| 39 } |
| 40 return false; |
| 41 } |
| 42 |
31 } // namespace gles2 | 43 } // namespace gles2 |
32 } // namespace gpu | 44 } // namespace gpu |
33 | 45 |
34 | 46 |
OLD | NEW |