mirror of
https://github.com/hyprwm/hyprcursor.git
synced 2024-11-17 02:35:57 +01:00
tests: mark styles as done after use
This commit is contained in:
parent
0631da05fc
commit
0cbf601229
2 changed files with 7 additions and 2 deletions
|
@ -26,6 +26,7 @@ int main(int argc, char** argv) {
|
||||||
int ret = cairo_surface_write_to_png(data[0]->surface, "/tmp/arrowC.png");
|
int ret = cairo_surface_write_to_png(data[0]->surface, "/tmp/arrowC.png");
|
||||||
|
|
||||||
hyprcursor_cursor_image_data_free(data, dataSize);
|
hyprcursor_cursor_image_data_free(data, dataSize);
|
||||||
|
hyprcursor_style_done(mgr, info);
|
||||||
|
|
||||||
if (ret) {
|
if (ret) {
|
||||||
printf("cairo failed\n");
|
printf("cairo failed\n");
|
||||||
|
|
|
@ -4,14 +4,16 @@
|
||||||
int main(int argc, char** argv) {
|
int main(int argc, char** argv) {
|
||||||
Hyprcursor::CHyprcursorManager mgr(nullptr);
|
Hyprcursor::CHyprcursorManager mgr(nullptr);
|
||||||
|
|
||||||
|
Hyprcursor::SCursorStyleInfo style{.size = 48};
|
||||||
|
|
||||||
// preload size 48 for testing
|
// preload size 48 for testing
|
||||||
if (!mgr.loadThemeStyle(Hyprcursor::SCursorStyleInfo{.size = 48})) {
|
if (!mgr.loadThemeStyle(style)) {
|
||||||
std::cout << "failed loading style\n";
|
std::cout << "failed loading style\n";
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
// get cursor for left_ptr
|
// get cursor for left_ptr
|
||||||
const auto SHAPEDATA = mgr.getShape("left_ptr", Hyprcursor::SCursorStyleInfo{.size = 48});
|
const auto SHAPEDATA = mgr.getShape("left_ptr", style);
|
||||||
|
|
||||||
if (SHAPEDATA.images.empty()) {
|
if (SHAPEDATA.images.empty()) {
|
||||||
std::cout << "no images\n";
|
std::cout << "no images\n";
|
||||||
|
@ -25,6 +27,8 @@ int main(int argc, char** argv) {
|
||||||
|
|
||||||
std::cout << "Cairo returned for write: " << RET << "\n";
|
std::cout << "Cairo returned for write: " << RET << "\n";
|
||||||
|
|
||||||
|
mgr.cursorSurfaceStyleDone(style);
|
||||||
|
|
||||||
if (RET)
|
if (RET)
|
||||||
return 1;
|
return 1;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue