-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathforge.h
43 lines (36 loc) · 1.08 KB
/
forge.h
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
41
42
43
/*******************************************************
* Copyright (c) 2014, ArrayFire
* All rights reserved.
*
* This file is distributed under 3-clause BSD license.
* The complete license agreement can be obtained at:
* http://arrayfire.com/licenses/BSD-3-Clause
********************************************************/
#pragma once
/**
\defgroup c_api_functions C API functions
Categorically divided into groups based on the renderable
they are related to.
\addtogroup c_api_functions
@{
\defgroup chart_functions Chart
\defgroup font_functions Font
\defgroup hist_functions Histogram
\defgroup image_functions Image
\defgroup plot_functions Plot
\defgroup surf_functions Surface
\defgroup util_functions Utility & Helper Functions
\defgroup vfield_functions Vector Field
\defgroup win_functions Window
@}
*/
#include "fg/defines.h"
#include "fg/update_buffer.h"
#include "fg/exception.h"
#include "fg/window.h"
#include "fg/font.h"
#include "fg/image.h"
#include "fg/version.h"
#include "fg/plot.h"
#include "fg/surface.h"
#include "fg/histogram.h"