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

Unified Diff: command_buffer/client/cross/o3d_cmd_helper.h

Issue 329046: Splits the command buffers into common commands... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/o3d/
Patch Set: '' Created 11 years, 2 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: command_buffer/client/cross/o3d_cmd_helper.h
===================================================================
--- command_buffer/client/cross/o3d_cmd_helper.h (revision 30289)
+++ command_buffer/client/cross/o3d_cmd_helper.h (working copy)
@@ -57,17 +57,6 @@
// ------------------ Individual commands ----------------------
- void Noop(uint32 skip_count) {
- o3d::Noop& cmd = GetImmediateCmdSpace<o3d::Noop>(
- skip_count * sizeof(CommandBufferEntry));
- cmd.Init(skip_count);
- }
-
- void SetToken(uint32 token) {
- o3d::SetToken& cmd = GetCmdSpace<o3d::SetToken>();
- cmd.Init(token);
- }
-
void BeginFrame() {
o3d::BeginFrame& cmd = GetCmdSpace<o3d::BeginFrame>();
cmd.Init();

Powered by Google App Engine
This is Rietveld 408576698