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

Unified Diff: command_buffer/service/cross/resource.h

Issue 234002: More work in Command Buffers... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: Created 11 years, 3 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
« no previous file with comments | « command_buffer/service/cross/gl/texture_gl.cc ('k') | command_buffer/service/cross/resource.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: command_buffer/service/cross/resource.h
===================================================================
--- command_buffer/service/cross/resource.h (revision 26885)
+++ command_buffer/service/cross/resource.h (working copy)
@@ -103,7 +103,7 @@
public:
// The representation of an input data stream.
struct Element {
- ResourceID vertex_buffer;
+ ResourceId vertex_buffer;
unsigned int offset;
unsigned int stride;
vertex_struct::Type type;
@@ -222,13 +222,13 @@
// Assigns a resource to a resource ID. Assigning a resource to an ID that
// already has an existing resource will destroy that existing resource. The
// map takes ownership of the resource.
- void Assign(ResourceID id, Resource* resource);
+ void Assign(ResourceId id, Resource* resource);
// Destroys a resource.
- bool Destroy(ResourceID id);
+ bool Destroy(ResourceId id);
// Destroy all resources.
void DestroyAllResources();
// Gets a resource by ID.
- Resource *Get(ResourceID id) {
+ Resource *Get(ResourceId id) {
return (id < resources_.size()) ? resources_[id] : NULL;
}
private:
@@ -246,11 +246,11 @@
// Assigns a resource to a resource ID. Assigning a resource to an ID that
// already has an existing resource will destroy that existing resource. The
// map takes ownership of the resource.
- void Assign(ResourceID id, T* resource) {
+ void Assign(ResourceId id, T* resource) {
container_.Assign(id, resource);
}
// Destroys a resource.
- bool Destroy(ResourceID id) {
+ bool Destroy(ResourceId id) {
return container_.Destroy(id);
}
// Destroy all resources.
@@ -258,7 +258,7 @@
return container_.DestroyAllResources();
}
// Gets a resource by ID.
- T *Get(ResourceID id) {
+ T *Get(ResourceId id) {
return down_cast<T*>(container_.Get(id));
}
private:
« no previous file with comments | « command_buffer/service/cross/gl/texture_gl.cc ('k') | command_buffer/service/cross/resource.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698