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

Unified Diff: gpu/pgl/command_buffer_pepper.h

Issue 545052: Implemented PGL library, an EGL like API for Pepper. Updated Pepper test plug... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 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
« no previous file with comments | « gpu/gpu.gyp ('k') | gpu/pgl/command_buffer_pepper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/pgl/command_buffer_pepper.h
===================================================================
--- gpu/pgl/command_buffer_pepper.h (revision 0)
+++ gpu/pgl/command_buffer_pepper.h (working copy)
@@ -1,9 +1,9 @@
-// Copyright (c) 2009 The Chromium Authors. All rights reserved.
+// Copyright (c) 2010 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.
-#ifndef WEBKIT_TOOLS_PEPPER_TEST_PLUGIN_COMMAND_BUFFER_PEPPER_H_
-#define WEBKIT_TOOLS_PEPPER_TEST_PLUGIN_COMMAND_BUFFER_PEPPER_H_
+#ifndef GPU_PGL_COMMAND_BUFFER_PEPPER_H
+#define GPU_PGL_COMMAND_BUFFER_PEPPER_H
#include "gpu/command_buffer/common/command_buffer.h"
#include "third_party/npapi/bindings/npapi.h"
@@ -12,12 +12,12 @@
// A CommandBuffer proxy implementation that uses the Pepper API to access
// the command buffer.
-// TODO(apatrick): move this into a library that can be used by any pepper
-// plugin.
class CommandBufferPepper : public gpu::CommandBuffer {
public:
- CommandBufferPepper(NPP npp, NPNetscapeFuncs* browser);
+ CommandBufferPepper(NPP npp,
+ NPDevice* device,
+ NPDeviceContext3D* device_context);
virtual ~CommandBufferPepper();
// CommandBuffer implementation.
@@ -40,12 +40,10 @@
private:
NPP npp_;
- NPNetscapeFuncs* browser_;
- NPExtensions* extensions_;
NPDevice* device_;
- NPDeviceContext3D context_;
+ NPDeviceContext3D* context_;
};
-#endif // WEBKIT_TOOLS_PEPPER_TEST_PLUGIN_COMMAND_BUFFER_PEPPER_H_
+#endif // GPU_PGL_COMMAND_BUFFER_PEPPER_H
« no previous file with comments | « gpu/gpu.gyp ('k') | gpu/pgl/command_buffer_pepper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698