We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4619e7c commit a95e33aCopy full SHA for a95e33a
1 file changed
src/extra-animations/vortex.hpp
@@ -175,14 +175,14 @@ class vortex_transformer : public wf::scene::view_2d_transformer_t
175
0.0f, 1.0f,
176
};
177
178
- const double vertex_data_pos[] = {
179
- src_box.x,
180
- src_box.y + src_box.height,
181
- src_box.x + src_box.width,
182
183
184
- src_box.y,
185
- src_box.x, src_box.y,
+ static const float vertex_data_pos[] = {
+ (float)src_box.x,
+ (float)src_box.y + (float)src_box.height,
+ (float)src_box.x + (float)src_box.width,
+ (float)src_box.y,
+ (float)src_box.x, (float)src_box.y,
186
187
188
data.pass->custom_gles_subpass([&]
0 commit comments