• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/IOGraphics-471.92.1/IOGraphicsFamily/IOKit/graphics/

Lines Matching defs:image

76     @discussion The maximum width of the cursor image in pixels. This is only defined if IOFB_ARBITRARY_SIZE_CURSOR is not defined.
81 @discussion The maximum height of the cursor image in pixels. This is only defined if IOFB_ARBITRARY_SIZE_CURSOR is not defined.
86 @abstract Cursor image for 1-bit cursor.
88 @field image This array contains the cursor images.
93 unsigned int image[4][16];
99 @abstract Cursor image for 8-bit cursor.
101 @field image This array contains cursor color values, which are converted to displayed colors through the color table. The array is two dimensional and its first index is the cursor frame and the second index is the cursor pixel.
102 @field mask This array contains the cursor alpha mask. The array is two dimensional with the same indexing as the image. If an alpha mask pixel is 0 and the corresponding image pixel is set to white for the display, then this cursor pixel will invert pixels on the display.
106 unsigned char image[4][256];
112 @abstract Cursor image for 15-bit cursor.
114 @field image This array defines the cursor color values and transparency. The array is two dimensional and its first index is the cursor frame and the second index is the cursor pixel. A value of 0 means the pixel is transparent. Non-zero values are stored with the red, green, blue, and alpha values encoded with the following masks:<BR>
123 unsigned short image[4][256];
128 @abstract Cursor image for 24-bit cursor.
130 @field image This array defines the cursor color values and transparency. The array is two dimensional and its first index is the cursor frame and the second index is the cursor pixel. The lower 24 bits of a pixel's value contain the RGB color, while the upper 8 bits contain the alpha value.
134 unsigned int image[4][256];
160 @field cursorRect The region that the cursor image currently occupies in software cursor mode.
161 @field oldCursorRect The region that the cursor image occupied the last time the cursor was drawn in software cursor mode.
173 @field hotSpot This array contains the location of the cursor hot spots indexed by frame. The hot spots coordinates are given relative to the top left corner of the cursor image.