Home | History | Annotate | Download | only in skin

Lines Matching refs:image

43     if (background->image)
44 skin_image_unref(&background->image);
52 const char* img = aconfig_str(node, "image", NULL);
61 background->image = skin_image_find_in( basepath, img );
62 if (background->image == SKIN_IMAGE_NONE) {
63 background->image = NULL;
69 background->rect.size.w = skin_image_w( background->image );
70 background->rect.size.h = skin_image_h( background->image );
224 skin_image_unref( &button->image );
235 const char* img = aconfig_str(node, "image", NULL);
244 button->image = skin_image_find_in( basepath, img );
246 if (button->image == SKIN_IMAGE_NONE) {
251 button->rect.size.w = skin_image_w( button->image );
252 button->rect.size.h = skin_image_h( button->image );