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; |