blob: 0cd1478a2bbfb108ebe65f8b1e0a84a89ae1f6c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
// Copyright (c) 2006-2009 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.
// A Test that we can access GL from c.
#ifndef GPU_COMMAND_BUFFER_CLIENT_GLES2_DEMO_C_H
#define GPU_COMMAND_BUFFER_CLIENT_GLES2_DEMO_C_H
#ifdef __cplusplus
extern "C" {
#endif
void GLFromCTestFunction();
#ifdef __cplusplus
}
#endif
#endif // GPU_COMMAND_BUFFER_CLIENT_GLES2_DEMO_C_H
|