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

Unified Diff: gpu/command_buffer/build_gles2_cmd_buffer.py

Issue 465040: Added CommandBufferClient, CommandBufferStub and some IPC messages.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years 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 | « gpu/DEPS ('k') | gpu/command_buffer/client/cmd_buffer_helper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/command_buffer/build_gles2_cmd_buffer.py
===================================================================
--- gpu/command_buffer/build_gles2_cmd_buffer.py (revision 34314)
+++ gpu/command_buffer/build_gles2_cmd_buffer.py (working copy)
@@ -17,7 +17,7 @@
_FIRST_SPECIFIC_COMMAND_ID = 256
_LICENSE = """
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -418,7 +418,7 @@
func.WriteCmdInit(file)
func.WriteCmdSet(file)
- file.Write(" command_buffer::CommandHeader header;\n")
+ file.Write(" gpu::CommandHeader header;\n")
args = func.GetCmdArgs()
for arg in args:
file.Write(" %s %s;\n" % (arg.cmd_type, arg.name))
@@ -2417,14 +2417,14 @@
def WriteNamespaceOpen(self, file):
"""Writes the code for the namespace."""
- file.Write("namespace command_buffer {\n")
+ file.Write("namespace gpu {\n")
file.Write("namespace gles2 {\n")
file.Write("\n")
def WriteNamespaceClose(self, file):
"""Writes the code to close the namespace."""
file.Write("} // namespace gles2\n")
- file.Write("} // namespace command_buffer\n")
+ file.Write("} // namespace gpu\n")
file.Write("\n")
def MakeGuard(self, filename):
« no previous file with comments | « gpu/DEPS ('k') | gpu/command_buffer/client/cmd_buffer_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698