-
Notifications
You must be signed in to change notification settings - Fork 67
/
Copy pathglfw_hello_world.cpp
218 lines (178 loc) · 7.32 KB
/
glfw_hello_world.cpp
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
// MonkVG OpenVG interface
#include <MonkVG/openvg.h>
#include <MonkVG/vgext.h>
// OpenGL window creation libraries
#if defined(__APPLE__)
#define GL_SILENCE_DEPRECATION
#define GLFW_INCLUDE_GLCOREARB
#include <GLFW/glfw3.h>
#else
#define GLFW_INCLUDE_ES32
#include <GLFW/glfw3.h>
#endif
// GLM math library
#include <glm/glm.hpp>
// STB image loader
#define STB_IMAGE_IMPLEMENTATION
#include <stb_image.h>
// System
#include <iostream>
#define WINDOW_WIDTH 1024
#define WINDOW_HEIGHT 768
int main(int argc, char **argv) {
std::cout << "Hello, MonkVG!\n";
// Initialise GLFW
if (!glfwInit()) {
std::cerr << "Failed to initialize GLFW\n";
return -1;
}
// create OpeGL window
#if defined(__APPLE__)
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 4);
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 1);
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT, GL_TRUE);
glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);
#else
glfwWindowHint(GLFW_CLIENT_API, GLFW_OPENGL_ES_API);
glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 3); // We want OpenGL 3.3
glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 2);
glfwWindowHint(GLFW_OPENGL_FORWARD_COMPAT,
GL_TRUE); // To make MacOS happy; should not be needed
glfwWindowHint(GLFW_OPENGL_PROFILE,
GLFW_OPENGL_ANY_PROFILE); // We don't want the old OpenGL
#endif
// Open a window and create its OpenGL context
GLFWwindow *window = glfwCreateWindow(WINDOW_WIDTH, WINDOW_HEIGHT,
"MonkVG Hello World", NULL, NULL);
if (window == NULL) {
fprintf(stderr, "Failed to open GLFW window.\n");
glfwTerminate();
return -1;
}
glfwMakeContextCurrent(window);
vgCreateContextMNK(WINDOW_WIDTH, WINDOW_HEIGHT,
VG_RENDERING_BACKEND_TYPE_OPENGL33);
// create fill and stroke paints
VGPaint fill_paint = vgCreatePaint();
vgSetPaint(fill_paint, VG_FILL_PATH);
VGfloat fill_color[4] = {0.0f, 1.0f, 0.0f, 1.0f};
vgSetParameterfv(fill_paint, VG_PAINT_COLOR, 4, &fill_color[0]);
VGPaint stroke_paint = vgCreatePaint();
vgSetPaint(stroke_paint, VG_STROKE_PATH);
VGfloat stroke_color[4] = {1.0f, 0.0f, 0.0f, 1.0f};
vgSetParameterfv(stroke_paint, VG_PAINT_COLOR, 4, &stroke_color[0]);
// create a simple box path
VGPath path = vgCreatePath(VG_PATH_FORMAT_STANDARD, VG_PATH_DATATYPE_F, 1,
0, 0, 0, VG_PATH_CAPABILITY_ALL);
vguRect(path, 0.0f, 0.0f, 100.0f, 150.0f);
// Load the image (JPEG, PNG, etc.)
int img_width, img_height, img_channels;
const char *filename = "assets/roy.png"; // Replace with your image path
unsigned char *img_data =
stbi_load(filename, &img_width, &img_height, &img_channels, 0);
if (img_data == nullptr) {
std::cerr << "Failed to load image: " << filename << std::endl;
return -1;
}
// Display image info
std::cout << "Loaded image: " << filename << std::endl;
std::cout << "Width: " << img_width << ", Height: " << img_height
<< ", Channels: " << img_channels << std::endl;
assert(img_channels == 4);
// Create an OpenVG image with the appropriate format
VGImage vg_image = vgCreateImage(VG_sRGBA_8888, img_width, img_height,
VG_IMAGE_QUALITY_BETTER);
// Copy the image data to the OpenVG image
vgImageSubData(vg_image, img_data, img_width * 4, VG_sRGBA_8888, 0, 0,
img_width, img_height);
// Free image memory
stbi_image_free(img_data);
// create a child image
VGImage child_image =
vgChildImage(vg_image, 0, 0, img_width / 2, img_height / 2);
// create gradients
// create a path for linear gradient
VGPath linear_grad_path =
vgCreatePath(VG_PATH_FORMAT_STANDARD, VG_PATH_DATATYPE_F, 1, 0, 0, 0,
VG_PATH_CAPABILITY_ALL);
vguRect(linear_grad_path, 0, 0, 120.0f, 40.0f);
// create a linear gradient paint to apply to the path
VGPaint linear_grad_paint = vgCreatePaint();
vgSetParameteri(linear_grad_paint, VG_PAINT_TYPE,
VG_PAINT_TYPE_LINEAR_GRADIENT);
// A linear gradient needs start and end points that describe orientation
// and length of the gradient.
float afLinearGradientPoints[4] = {0.0f, 0.0f, 120.0f, 0.0f};
vgSetParameterfv(linear_grad_paint, VG_PAINT_LINEAR_GRADIENT, 4,
afLinearGradientPoints);
// Now we have to specify the colour ramp. It is described by "stops" that
// are given as premultiplied sRGBA colour at a position between 0 and 1.
// Between these stops, the colour is linearly interpolated.
// This colour ramp goes from red to green to blue, all opaque.
float stops[3][5] = {{0.0f, 1.0f, 0.0f, 0.0f, 1.0f},
{0.5f, 0.0f, 1.0f, 0.0f, 0.8f},
{1.0f, 0.0f, 0.0f, 1.0f, 0.4f}};
vgSetParameterfv(linear_grad_paint, VG_PAINT_COLOR_RAMP_STOPS, 15,
&stops[0][0]);
// Ensure we can capture the escape key being pressed below
glfwSetInputMode(window, GLFW_STICKY_KEYS, GL_TRUE);
// set viewport
int width, height;
glfwGetFramebufferSize(window, &width, &height);
glViewport(0, 0, width, height);
do {
// Clear the screen.
glClearColor(0.5f, 0.5f, 0.5f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
/// do an ortho camera
// NOTE: this is not standard OpenVG
// NOTE: Bottom left is 0,0
vgPushOrthoCamera(0.0f, (float)width, 0.0f, (float)height, -1.0f, 1.0f);
/// draw the basic path
// set up path trasnform
vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE);
vgLoadIdentity();
vgTranslate(width / 2, height / 2);
// stroke wideth
vgSetf(VG_STROKE_LINE_WIDTH, 5.0f);
// fill and stroke paints
vgSetPaint(fill_paint, VG_FILL_PATH);
vgSetPaint(stroke_paint, VG_STROKE_PATH);
// draw the path with fill and stroke
vgDrawPath(path, VG_FILL_PATH | VG_STROKE_PATH);
// draw the linear gradient
// vgSeti(VG_MATRIX_MODE, VG_MATRIX_PATH_USER_TO_SURFACE);
// vgLoadIdentity();
// vgTranslate(50, 400);
// vgSetPaint(linear_grad_paint, VG_FILL_PATH);
// vgDrawPath(linear_grad_path, VG_FILL_PATH);
// draw the image
vgSeti(VG_MATRIX_MODE, VG_MATRIX_IMAGE_USER_TO_SURFACE);
vgLoadIdentity();
vgScale(0.25f, 0.25f);
vgTranslate(50, 50);
vgDrawImage(vg_image);
// draw the child image
vgSeti(VG_MATRIX_MODE, VG_MATRIX_IMAGE_USER_TO_SURFACE);
vgLoadIdentity();
vgScale(0.25f, 0.25f);
vgTranslate(50, 200);
vgDrawImage(child_image);
// pop the ortho camera
vgPopOrthoCamera();
// Swap buffers
glfwSwapBuffers(window);
glfwPollEvents();
} // Check if the ESC key was pressed or the window was closed
while (glfwGetKey(window, GLFW_KEY_ESCAPE) != GLFW_PRESS &&
glfwWindowShouldClose(window) == 0);
// destroy MonkVG
vgDestroyPath(path);
vgDestroyPaint(fill_paint);
vgDestroyPaint(stroke_paint);
vgDestroyImage(child_image);
vgDestroyImage(vg_image);
vgDestroyContextMNK();
glfwDestroyWindow(window);
return 0;
}