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

Unified Diff: command_buffer/common/cross/cmd_buffer_format.h

Issue 249013: Fixed Mac gyp build. Switched to using Chrome hash_tables.h, changed... (Closed) Base URL: svn://svn.chromium.org/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/command_buffer.gyp ('k') | plugin/cross/np_v8_bridge.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: command_buffer/common/cross/cmd_buffer_format.h
===================================================================
--- command_buffer/common/cross/cmd_buffer_format.h (revision 27310)
+++ command_buffer/common/cross/cmd_buffer_format.h (working copy)
@@ -67,6 +67,13 @@
namespace o3d {
namespace command_buffer {
+namespace cmd {
+ enum ArgFlags {
+ kFixed = 0x0,
+ kAtLeastN = 0x1,
+ };
+} // namespace cmd
+
// Computes the number of command buffer entries needed for a certain size. In
// other words it rounds up to a multiple of entries.
inline uint32 ComputeNumEntries(size_t size_in_bytes) {
@@ -457,11 +464,6 @@
RoundSizeToMultipleOfEntries(size_of_data_in_bytes);
}
-enum ArgFlags {
- kFixed = 0x0,
- kAtLeastN = 0x1,
-};
-
struct SharedMemory {
void Init(uint32 _id, uint32 _offset) {
id = _id;
« no previous file with comments | « command_buffer/command_buffer.gyp ('k') | plugin/cross/np_v8_bridge.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698