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

Side by Side Diff: cc/resources/transferable_resource.h

Issue 21159007: cc: Adding support for RGBA_4444 tile textures (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: deprecate GLenum format throughout cc Created 7 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 unified diff | Download patch
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 2012 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 #ifndef CC_RESOURCES_TRANSFERABLE_RESOURCE_H_ 5 #ifndef CC_RESOURCES_TRANSFERABLE_RESOURCE_H_
6 #define CC_RESOURCES_TRANSFERABLE_RESOURCE_H_ 6 #define CC_RESOURCES_TRANSFERABLE_RESOURCE_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 15 matching lines...) Expand all
26 ReturnedResource ToReturnedResource() const; 26 ReturnedResource ToReturnedResource() const;
27 static void ReturnResources(const TransferableResourceArray& input, 27 static void ReturnResources(const TransferableResourceArray& input,
28 ReturnedResourceArray* output); 28 ReturnedResourceArray* output);
29 29
30 unsigned id; 30 unsigned id;
31 unsigned sync_point; 31 unsigned sync_point;
32 uint32 format; 32 uint32 format;
33 uint32 filter; 33 uint32 filter;
34 gfx::Size size; 34 gfx::Size size;
35 gpu::Mailbox mailbox; 35 gpu::Mailbox mailbox;
36 uint32 texture_type;
reveman 2013/09/12 15:57:40 don't think you need this anymore
36 }; 37 };
37 38
38 } // namespace cc 39 } // namespace cc
39 40
40 #endif // CC_RESOURCES_TRANSFERABLE_RESOURCE_H_ 41 #endif // CC_RESOURCES_TRANSFERABLE_RESOURCE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698