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

Unified Diff: core/cross/command_buffer/texture_cb.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 | « core/cross/command_buffer/stream_bank_cb.cc ('k') | core/cross/command_buffer/texture_cb.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/cross/command_buffer/texture_cb.h
===================================================================
--- core/cross/command_buffer/texture_cb.h (revision 26885)
+++ core/cross/command_buffer/texture_cb.h (working copy)
@@ -81,7 +81,7 @@
}
// Gets the texture resource ID.
- command_buffer::ResourceID resource_id() const { return resource_id_; }
+ command_buffer::ResourceId resource_id() const { return resource_id_; }
// Gets a RGBASwizzleIndices that contains a mapping from
// RGBA to the internal format used by the rendering API.
@@ -103,7 +103,7 @@
// and raw Bitmap data.
// The texture takes ownership of the bitmap data.
Texture2DCB(ServiceLocator* service_locator,
- command_buffer::ResourceID resource_id,
+ command_buffer::ResourceId resource_id,
Texture::Format format,
int levels,
int width,
@@ -117,7 +117,7 @@
}
RendererCB* renderer_;
- command_buffer::ResourceID resource_id_;
+ command_buffer::ResourceId resource_id_;
// A bitmap used to back the NPOT textures on POT-only hardware, and to back
// the pixel buffer for Lock().
@@ -162,7 +162,7 @@
}
// Gets the texture resource ID.
- command_buffer::ResourceID resource_id() const { return resource_id_; }
+ command_buffer::ResourceId resource_id() const { return resource_id_; }
// Gets a RGBASwizzleIndices that contains a mapping from
// RGBA to the internal format used by the rendering API.
@@ -183,7 +183,7 @@
private:
// Creates a texture from a pre-existing texture resource.
TextureCUBECB(ServiceLocator* service_locator,
- command_buffer::ResourceID texture,
+ command_buffer::ResourceId texture,
Texture::Format format,
int levels,
int edge_length,
@@ -197,7 +197,7 @@
}
RendererCB* renderer_;
- command_buffer::ResourceID resource_id_;
+ command_buffer::ResourceId resource_id_;
// Bitmaps used to back the NPOT textures on POT-only hardware.
Bitmap::Ref backing_bitmaps_[NUMBER_OF_FACES];
« no previous file with comments | « core/cross/command_buffer/stream_bank_cb.cc ('k') | core/cross/command_buffer/texture_cb.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698