blob: 410b952170f859cf27afafe3dc33f81bd4da8451 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
// 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_
|