Lines Matching defs:images
2105 void _glfwSetWindowIconX11(_GLFWwindow* window, int count, const GLFWimage* images)
2112 longCount += 2 + images[i].width * images[i].height;
2119 *target++ = images[i].width;
2120 *target++ = images[i].height;
2122 for (int j = 0; j < images[i].width * images[i].height; j++)
2124 *target++ = (((unsigned long) images[i].pixels[j * 4 + 0]) << 16) |
2125 (((unsigned long) images[i].pixels[j * 4 + 1]) << 8) |
2126 (((unsigned long) images[i].pixels[j * 4 + 2]) << 0) |
2127 (((unsigned long) images[i].pixels[j * 4 + 3]) << 24);