| Index: native_client_sdk/src/libraries/ppapi_main/ppapi_instance3d.h
|
| diff --git a/native_client_sdk/src/libraries/ppapi_main/ppapi_instance3d.h b/native_client_sdk/src/libraries/ppapi_main/ppapi_instance3d.h
|
| deleted file mode 100644
|
| index 410b952170f859cf27afafe3dc33f81bd4da8451..0000000000000000000000000000000000000000
|
| --- a/native_client_sdk/src/libraries/ppapi_main/ppapi_instance3d.h
|
| +++ /dev/null
|
| @@ -1,40 +0,0 @@
|
| -// 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.
|
| -
|
| -#ifndef PPAPI_MAIN_PPAPI_INSTANCE3D_H_
|
| -#define PPAPI_MAIN_PPAPI_INSTANCE3D_H_
|
| -
|
| -#include <map>
|
| -
|
| -#include "ppapi/c/pp_instance.h"
|
| -#include "ppapi/c/pp_resource.h"
|
| -
|
| -#include "ppapi/cpp/graphics_3d.h"
|
| -#include "ppapi/cpp/instance.h"
|
| -#include "ppapi/cpp/size.h"
|
| -
|
| -#include "ppapi_main/ppapi_instance.h"
|
| -
|
| -
|
| -class PPAPIInstance3D : public PPAPIInstance {
|
| - public:
|
| - PPAPIInstance3D(PP_Instance instance, const char *args[]);
|
| - virtual ~PPAPIInstance3D();
|
| -
|
| - // Called when we need to rebuild the context
|
| - virtual void BuildContext(int32_t result, const pp::Size& new_size);
|
| -
|
| - // Called whenever a swap takes place
|
| - virtual void Flushed(int result);
|
| -
|
| - virtual void Render(PP_Resource ctx, uint32_t width, uint32_t height);
|
| - static PPAPIInstance3D* GetInstance3D();
|
| -
|
| - protected:
|
| - pp::Graphics3D device_context_;
|
| -
|
| -};
|
| -
|
| -
|
| -#endif // PPAPI_MAIN_PPAPI_INSTANCE3D_H_
|
|
|