blob: acce98cd1f1d2479863682f59fdec6d15099ca3c (
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
|
/*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef GrMtlTrampoline_DEFINED
#define GrMtlTrampoline_DEFINED
#include "GrTypes.h"
class GrContext;
class GrGpu;
struct GrContextOptions;
/*
* This class is used to hold functions which trampoline from the Ganesh cpp code to the GrMtl
* objective-c files.
*/
class GrMtlTrampoline {
public:
static GrGpu* CreateGpu(GrBackendContext backendContext, const GrContextOptions& options,
GrContext* context);
};
#endif
|