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

Unified Diff: gpu/command_buffer/service/texture_manager.h

Issue 10834248: Clean-up inline members of nested classes (gpu/) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: GLES2_IMPL_EXPORT Created 8 years, 4 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
diff --git a/gpu/command_buffer/service/texture_manager.h b/gpu/command_buffer/service/texture_manager.h
index 33c378d558c1d9582c7f508717bdb94bfd6d3972..9fa01ab4763e0018c48e6f42a9db7057ccef2e4d 100644
--- a/gpu/command_buffer/service/texture_manager.h
+++ b/gpu/command_buffer/service/texture_manager.h
@@ -188,33 +188,8 @@ class GPU_EXPORT TextureManager {
~TextureInfo();
struct LevelInfo {
- LevelInfo()
- : cleared(true),
- target(0),
- level(-1),
- internal_format(0),
- width(0),
- height(0),
- depth(0),
- border(0),
- format(0),
- type(0),
- estimated_size(0) {
- }
-
- LevelInfo(const LevelInfo& rhs)
- : cleared(rhs.cleared),
- target(rhs.target),
- level(rhs.level),
- internal_format(rhs.internal_format),
- width(rhs.width),
- height(rhs.height),
- depth(rhs.depth),
- border(rhs.border),
- format(rhs.format),
- type(rhs.type),
- estimated_size(rhs.estimated_size) {
- }
+ LevelInfo();
+ LevelInfo(const LevelInfo& rhs);
bool cleared;
GLenum target;
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder_unittest_base.cc ('k') | gpu/command_buffer/service/texture_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698