forked from hunter-packages/arrayfire
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraphics.cpp
More file actions
83 lines (68 loc) · 2.08 KB
/
graphics.cpp
File metadata and controls
83 lines (68 loc) · 2.08 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
/*******************************************************
* Copyright (c) 2015, 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
********************************************************/
#include <af/array.h>
#include <af/graphics.h>
#include "symbol_manager.hpp"
af_err af_create_window(af_window *out, const int width, const int height, const char* const title)
{
return CALL(out, width, height, title);
}
af_err af_set_position(const af_window wind, const unsigned x, const unsigned y)
{
return CALL(wind, x, y);
}
af_err af_set_title(const af_window wind, const char* const title)
{
return CALL(wind, title);
}
af_err af_set_size(const af_window wind, const unsigned w, const unsigned h)
{
return CALL(wind, w, h);
}
af_err af_draw_image(const af_window wind, const af_array in, const af_cell* const props)
{
CHECK_ARRAYS(in);
return CALL(wind, in, props);
}
af_err af_draw_plot(const af_window wind, const af_array X, const af_array Y, const af_cell* const props)
{
CHECK_ARRAYS(X, Y);
return CALL(wind, X, Y, props);
}
af_err af_draw_plot3(const af_window wind, const af_array P, const af_cell* const props)
{
CHECK_ARRAYS(P);
return CALL(wind, P, props);
}
af_err af_draw_hist(const af_window wind, const af_array X, const double minval, const double maxval, const af_cell* const props)
{
CHECK_ARRAYS(X);
return CALL(wind, X, minval, maxval, props);
}
af_err af_draw_surface(const af_window wind, const af_array xVals, const af_array yVals, const af_array S, const af_cell* const props)
{
CHECK_ARRAYS(xVals, yVals, S);
return CALL(wind, xVals, yVals, S, props);
}
af_err af_grid(const af_window wind, const int rows, const int cols)
{
return CALL(wind, rows, cols);
}
af_err af_show(const af_window wind)
{
return CALL(wind);
}
af_err af_is_window_closed(bool *out, const af_window wind)
{
return CALL(out, wind);
}
af_err af_destroy_window(const af_window wind)
{
return CALL(wind);
}