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

Unified Diff: gpu/command_buffer/client/gles2_lib.h

Issue 9150022: Revert r118525 / Re-land r118240 - the build failure was a flake. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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: gpu/command_buffer/client/gles2_lib.h
diff --git a/gpu/command_buffer/client/gles2_lib.h b/gpu/command_buffer/client/gles2_lib.h
index 799cd4e4fc7248f4043d700fccd4ed5c2f78eb71..75ab989555c613619313d7bcd963b7831d872109 100644
--- a/gpu/command_buffer/client/gles2_lib.h
+++ b/gpu/command_buffer/client/gles2_lib.h
@@ -1,27 +1,29 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 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.
-// These functions emluate GLES2 over command buffers.
+// These functions emulate GLES2 over command buffers.
#ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_LIB_H_
#define GPU_COMMAND_BUFFER_CLIENT_GLES2_LIB_H_
+#include "gpu/command_buffer/client/gles2_c_lib_export.h"
+
#include "../client/gles2_implementation.h"
namespace gles2 {
// Initialize the GLES2 library.
-void Initialize();
+GLES2_C_LIB_EXPORT void Initialize();
// Terminate the GLES2 library.
-void Terminate();
+GLES2_C_LIB_EXPORT void Terminate();
// Get the current GL context.
-gpu::gles2::GLES2Implementation* GetGLContext();
+GLES2_C_LIB_EXPORT gpu::gles2::GLES2Implementation* GetGLContext();
// Set the current GL context.
-void SetGLContext(gpu::gles2::GLES2Implementation* impl);
+GLES2_C_LIB_EXPORT void SetGLContext(gpu::gles2::GLES2Implementation* impl);
} // namespace gles2
« no previous file with comments | « gpu/command_buffer/client/gles2_implementation_autogen.h ('k') | gpu/command_buffer/common/gles2_cmd_format_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698