2011-04-01 14:27:48 +00:00
|
|
|
/*
|
|
|
|
* DIB driver include file.
|
|
|
|
*
|
|
|
|
* Copyright 2011 Huw Davies
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
|
|
*/
|
|
|
|
|
2011-09-07 21:48:24 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int bit_count, width, height;
|
2011-11-29 14:12:00 +00:00
|
|
|
int compression;
|
2012-04-27 12:44:53 +00:00
|
|
|
RECT rect; /* visible rectangle relative to bitmap origin */
|
2011-09-07 21:48:24 +00:00
|
|
|
int stride; /* stride in bytes. Will be -ve for bottom-up dibs (see bits). */
|
|
|
|
struct gdi_image_bits bits; /* bits.ptr points to the top-left corner of the dib. */
|
|
|
|
|
|
|
|
DWORD red_mask, green_mask, blue_mask;
|
|
|
|
int red_shift, green_shift, blue_shift;
|
|
|
|
int red_len, green_len, blue_len;
|
|
|
|
|
2011-12-12 14:58:05 +00:00
|
|
|
const RGBQUAD *color_table;
|
2011-09-07 21:48:24 +00:00
|
|
|
DWORD color_table_size;
|
|
|
|
|
|
|
|
const struct primitive_funcs *funcs;
|
|
|
|
} dib_info;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
DWORD count;
|
|
|
|
DWORD dashes[16]; /* 16 is the maximum number for a PS_USERSTYLE pen */
|
|
|
|
DWORD total_len; /* total length of the dashes, should be multiplied by 2 if there are an odd number of dash lengths */
|
|
|
|
} dash_pattern;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
int left_in_dash;
|
|
|
|
int cur_dash;
|
|
|
|
BOOL mark;
|
|
|
|
} dash_pos;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
DWORD and;
|
|
|
|
DWORD xor;
|
|
|
|
} rop_mask;
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
void *and;
|
|
|
|
void *xor;
|
|
|
|
} rop_mask_bits;
|
|
|
|
|
2011-12-30 09:17:37 +00:00
|
|
|
struct dibdrv_physdev;
|
2012-11-27 22:19:29 +00:00
|
|
|
struct cached_font;
|
2011-12-30 09:17:37 +00:00
|
|
|
|
|
|
|
typedef struct dib_brush
|
|
|
|
{
|
|
|
|
UINT style;
|
|
|
|
UINT hatch;
|
|
|
|
INT rop; /* rop2 last used to create the brush bits */
|
|
|
|
COLORREF colorref;
|
|
|
|
dib_info dib;
|
2012-05-22 19:47:30 +00:00
|
|
|
rop_mask_bits masks;
|
2011-12-30 09:17:37 +00:00
|
|
|
struct brush_pattern pattern;
|
|
|
|
BOOL (*rects)(struct dibdrv_physdev *pdev, struct dib_brush *brush, dib_info *dib,
|
|
|
|
int num, const RECT *rects, INT rop);
|
|
|
|
} dib_brush;
|
|
|
|
|
2011-11-14 12:49:05 +00:00
|
|
|
struct intensity_range
|
|
|
|
{
|
|
|
|
BYTE r_min, r_max;
|
|
|
|
BYTE g_min, g_max;
|
|
|
|
BYTE b_min, b_max;
|
|
|
|
};
|
|
|
|
|
2011-09-07 21:48:24 +00:00
|
|
|
typedef struct dibdrv_physdev
|
|
|
|
{
|
|
|
|
struct gdi_physdev dev;
|
|
|
|
dib_info dib;
|
2011-12-30 09:17:37 +00:00
|
|
|
dib_brush brush;
|
2011-09-07 21:48:24 +00:00
|
|
|
|
|
|
|
HRGN clip;
|
2012-04-25 11:15:24 +00:00
|
|
|
RECT *bounds;
|
2012-11-27 22:19:29 +00:00
|
|
|
struct cached_font *font;
|
2011-09-07 21:48:24 +00:00
|
|
|
|
|
|
|
/* pen */
|
2011-12-28 10:06:30 +00:00
|
|
|
DWORD pen_style, pen_endcap, pen_join;
|
2011-12-28 12:52:58 +00:00
|
|
|
BOOL pen_uses_region, pen_is_ext;
|
2011-12-09 13:47:27 +00:00
|
|
|
int pen_width;
|
2011-12-30 09:38:18 +00:00
|
|
|
dib_brush pen_brush;
|
2011-09-07 21:48:24 +00:00
|
|
|
dash_pattern pen_pattern;
|
|
|
|
dash_pos dash_pos;
|
2011-12-22 12:33:29 +00:00
|
|
|
rop_mask dash_masks[2];
|
2011-12-28 10:56:24 +00:00
|
|
|
BOOL (* pen_lines)(struct dibdrv_physdev *pdev, int num, POINT *pts, BOOL close, HRGN region);
|
2011-09-07 21:48:24 +00:00
|
|
|
} dibdrv_physdev;
|
|
|
|
|
2011-10-11 13:23:04 +00:00
|
|
|
extern BOOL dibdrv_AlphaBlend( PHYSDEV dst_dev, struct bitblt_coords *dst,
|
|
|
|
PHYSDEV src_dev, struct bitblt_coords *src, BLENDFUNCTION blend ) DECLSPEC_HIDDEN;
|
2012-01-06 16:20:37 +00:00
|
|
|
extern BOOL dibdrv_Arc( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
|
|
|
|
INT start_x, INT start_y, INT end_x, INT end_y ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL dibdrv_ArcTo( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
|
|
|
|
INT start_x, INT start_y, INT end_x, INT end_y ) DECLSPEC_HIDDEN;
|
2011-10-14 10:30:28 +00:00
|
|
|
extern DWORD dibdrv_BlendImage( PHYSDEV dev, BITMAPINFO *info, const struct gdi_image_bits *bits,
|
|
|
|
struct bitblt_coords *src, struct bitblt_coords *dst, BLENDFUNCTION func ) DECLSPEC_HIDDEN;
|
2012-01-06 16:20:37 +00:00
|
|
|
extern BOOL dibdrv_Chord( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
|
|
|
|
INT start_x, INT start_y, INT end_x, INT end_y ) DECLSPEC_HIDDEN;
|
2012-01-06 11:55:15 +00:00
|
|
|
extern BOOL dibdrv_Ellipse( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
|
2012-01-06 16:23:00 +00:00
|
|
|
extern BOOL dibdrv_ExtFloodFill( PHYSDEV dev, INT x, INT y, COLORREF color, UINT type ) DECLSPEC_HIDDEN;
|
2011-11-14 12:49:04 +00:00
|
|
|
extern BOOL dibdrv_ExtTextOut( PHYSDEV dev, INT x, INT y, UINT flags,
|
|
|
|
const RECT *rect, LPCWSTR str, UINT count, const INT *dx ) DECLSPEC_HIDDEN;
|
2012-05-23 21:36:20 +00:00
|
|
|
extern DWORD dibdrv_GetImage( PHYSDEV dev, BITMAPINFO *info, struct gdi_image_bits *bits,
|
|
|
|
struct bitblt_coords *src ) DECLSPEC_HIDDEN;
|
2011-12-12 19:20:06 +00:00
|
|
|
extern COLORREF dibdrv_GetNearestColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
|
2011-10-19 11:41:58 +00:00
|
|
|
extern COLORREF dibdrv_GetPixel( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
|
2012-01-06 11:55:15 +00:00
|
|
|
extern BOOL dibdrv_GradientFill( PHYSDEV dev, TRIVERTEX *vert_array, ULONG nvert,
|
|
|
|
void *grad_array, ULONG ngrad, ULONG mode ) DECLSPEC_HIDDEN;
|
2011-07-13 12:56:12 +00:00
|
|
|
extern BOOL dibdrv_LineTo( PHYSDEV dev, INT x, INT y ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL dibdrv_PatBlt( PHYSDEV dev, struct bitblt_coords *dst, DWORD rop ) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL dibdrv_PaintRgn( PHYSDEV dev, HRGN hrgn ) DECLSPEC_HIDDEN;
|
2012-01-06 16:20:37 +00:00
|
|
|
extern BOOL dibdrv_Pie( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
|
|
|
|
INT start_x, INT start_y, INT end_x, INT end_y ) DECLSPEC_HIDDEN;
|
2011-12-29 08:57:58 +00:00
|
|
|
extern BOOL dibdrv_PolyPolygon( PHYSDEV dev, const POINT *pt, const INT *counts, DWORD polygons ) DECLSPEC_HIDDEN;
|
2011-08-19 15:26:19 +00:00
|
|
|
extern BOOL dibdrv_PolyPolyline( PHYSDEV dev, const POINT* pt, const DWORD* counts,
|
|
|
|
DWORD polylines ) DECLSPEC_HIDDEN;
|
2011-12-29 08:57:58 +00:00
|
|
|
extern BOOL dibdrv_Polygon( PHYSDEV dev, const POINT *pt, INT count ) DECLSPEC_HIDDEN;
|
2011-08-19 15:26:19 +00:00
|
|
|
extern BOOL dibdrv_Polyline( PHYSDEV dev, const POINT* pt, INT count ) DECLSPEC_HIDDEN;
|
2012-05-23 21:36:20 +00:00
|
|
|
extern DWORD dibdrv_PutImage( PHYSDEV dev, HRGN clip, BITMAPINFO *info,
|
2011-08-23 10:16:30 +00:00
|
|
|
const struct gdi_image_bits *bits, struct bitblt_coords *src,
|
|
|
|
struct bitblt_coords *dst, DWORD rop ) DECLSPEC_HIDDEN;
|
2011-07-13 12:56:12 +00:00
|
|
|
extern BOOL dibdrv_Rectangle( PHYSDEV dev, INT left, INT top, INT right, INT bottom ) DECLSPEC_HIDDEN;
|
2012-01-06 11:55:15 +00:00
|
|
|
extern BOOL dibdrv_RoundRect( PHYSDEV dev, INT left, INT top, INT right, INT bottom,
|
|
|
|
INT ellipse_width, INT ellipse_height ) DECLSPEC_HIDDEN;
|
2011-12-29 18:49:41 +00:00
|
|
|
extern HBRUSH dibdrv_SelectBrush( PHYSDEV dev, HBRUSH hbrush, const struct brush_pattern *pattern ) DECLSPEC_HIDDEN;
|
2012-10-31 15:07:51 +00:00
|
|
|
extern HFONT dibdrv_SelectFont( PHYSDEV dev, HFONT font, UINT *aa_flags ) DECLSPEC_HIDDEN;
|
2011-12-29 19:16:46 +00:00
|
|
|
extern HPEN dibdrv_SelectPen( PHYSDEV dev, HPEN hpen, const struct brush_pattern *pattern ) DECLSPEC_HIDDEN;
|
2011-07-13 12:56:12 +00:00
|
|
|
extern COLORREF dibdrv_SetDCBrushColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
|
|
|
|
extern COLORREF dibdrv_SetDCPenColor( PHYSDEV dev, COLORREF color ) DECLSPEC_HIDDEN;
|
2011-10-19 11:41:55 +00:00
|
|
|
extern COLORREF dibdrv_SetPixel( PHYSDEV dev, INT x, INT y, COLORREF color ) DECLSPEC_HIDDEN;
|
2011-09-27 15:13:39 +00:00
|
|
|
extern BOOL dibdrv_StretchBlt( PHYSDEV dst_dev, struct bitblt_coords *dst,
|
|
|
|
PHYSDEV src_dev, struct bitblt_coords *src, DWORD rop ) DECLSPEC_HIDDEN;
|
2012-07-26 18:47:31 +00:00
|
|
|
extern struct opengl_funcs *dibdrv_wine_get_wgl_driver( PHYSDEV dev, UINT version ) DECLSPEC_HIDDEN;
|
2011-04-07 12:46:33 +00:00
|
|
|
|
2011-04-01 14:27:48 +00:00
|
|
|
static inline dibdrv_physdev *get_dibdrv_pdev( PHYSDEV dev )
|
|
|
|
{
|
|
|
|
return (dibdrv_physdev *)dev;
|
|
|
|
}
|
2011-04-05 12:23:20 +00:00
|
|
|
|
2011-11-21 10:12:51 +00:00
|
|
|
struct line_params
|
|
|
|
{
|
|
|
|
int err_start, err_add_1, err_add_2, bias;
|
|
|
|
unsigned int length;
|
|
|
|
int x_inc, y_inc;
|
|
|
|
BOOL x_major;
|
|
|
|
};
|
|
|
|
|
2011-09-27 15:13:38 +00:00
|
|
|
struct stretch_params
|
|
|
|
{
|
|
|
|
int err_start, err_add_1, err_add_2;
|
|
|
|
unsigned int length;
|
|
|
|
int dst_inc, src_inc;
|
|
|
|
};
|
|
|
|
|
2011-04-05 12:23:20 +00:00
|
|
|
typedef struct primitive_funcs
|
|
|
|
{
|
2011-09-27 15:13:36 +00:00
|
|
|
void (* solid_rects)(const dib_info *dib, int num, const RECT *rc, DWORD and, DWORD xor);
|
2011-11-21 10:12:52 +00:00
|
|
|
void (* solid_line)(const dib_info *dib, const POINT *start, const struct line_params *params,
|
|
|
|
DWORD and, DWORD xor);
|
2011-09-27 15:13:36 +00:00
|
|
|
void (* pattern_rects)(const dib_info *dib, int num, const RECT *rc, const POINT *orign,
|
2012-05-22 19:52:44 +00:00
|
|
|
const dib_info *brush, const rop_mask_bits *bits);
|
2011-09-27 15:13:36 +00:00
|
|
|
void (* copy_rect)(const dib_info *dst, const RECT *rc, const dib_info *src,
|
|
|
|
const POINT *origin, int rop2, int overlap);
|
2011-10-14 10:30:28 +00:00
|
|
|
void (* blend_rect)(const dib_info *dst, const RECT *rc, const dib_info *src,
|
|
|
|
const POINT *origin, BLENDFUNCTION blend);
|
2011-12-04 16:10:30 +00:00
|
|
|
BOOL (* gradient_rect)(const dib_info *dib, const RECT *rc, const TRIVERTEX *v, int mode);
|
2011-11-14 12:49:06 +00:00
|
|
|
void (* draw_glyph)(const dib_info *dst, const RECT *rc, const dib_info *glyph,
|
|
|
|
const POINT *origin, DWORD text_pixel, const struct intensity_range *ranges);
|
2012-10-30 13:22:16 +00:00
|
|
|
void (* draw_subpixel_glyph)(const dib_info *dst, const RECT *rc, const dib_info *glyph,
|
|
|
|
const POINT *origin, DWORD text_pixel );
|
2012-01-18 14:48:24 +00:00
|
|
|
DWORD (* get_pixel)(const dib_info *dib, int x, int y);
|
2011-09-27 15:13:36 +00:00
|
|
|
DWORD (* colorref_to_pixel)(const dib_info *dib, COLORREF color);
|
2011-10-19 11:41:54 +00:00
|
|
|
COLORREF (* pixel_to_colorref)(const dib_info *dib, DWORD pixel);
|
2012-05-22 08:57:01 +00:00
|
|
|
void (* convert_to)(dib_info *dst, const dib_info *src, const RECT *src_rect, BOOL dither);
|
2012-05-23 09:24:18 +00:00
|
|
|
void (* create_rop_masks)(const dib_info *dib, const BYTE *hatch_ptr,
|
2011-09-27 15:13:36 +00:00
|
|
|
const rop_mask *fg, const rop_mask *bg, rop_mask_bits *bits);
|
2012-05-23 09:14:16 +00:00
|
|
|
void (* create_dither_masks)(const dib_info *dib, int rop2, COLORREF color, rop_mask_bits *bits);
|
2011-09-27 15:13:38 +00:00
|
|
|
void (* stretch_row)(const dib_info *dst_dib, const POINT *dst_start,
|
|
|
|
const dib_info *src_dib, const POINT *src_start,
|
|
|
|
const struct stretch_params *params, int mode, BOOL keep_dst);
|
|
|
|
void (* shrink_row)(const dib_info *dst_dib, const POINT *dst_start,
|
|
|
|
const dib_info *src_dib, const POINT *src_start,
|
|
|
|
const struct stretch_params *params, int mode, BOOL keep_dst);
|
2011-04-05 12:23:20 +00:00
|
|
|
} primitive_funcs;
|
|
|
|
|
|
|
|
extern const primitive_funcs funcs_8888 DECLSPEC_HIDDEN;
|
2011-04-05 12:26:08 +00:00
|
|
|
extern const primitive_funcs funcs_32 DECLSPEC_HIDDEN;
|
2011-06-01 08:41:39 +00:00
|
|
|
extern const primitive_funcs funcs_24 DECLSPEC_HIDDEN;
|
2011-05-27 12:10:29 +00:00
|
|
|
extern const primitive_funcs funcs_555 DECLSPEC_HIDDEN;
|
|
|
|
extern const primitive_funcs funcs_16 DECLSPEC_HIDDEN;
|
2011-05-27 13:26:02 +00:00
|
|
|
extern const primitive_funcs funcs_8 DECLSPEC_HIDDEN;
|
2011-05-31 09:02:03 +00:00
|
|
|
extern const primitive_funcs funcs_4 DECLSPEC_HIDDEN;
|
2011-06-15 12:43:49 +00:00
|
|
|
extern const primitive_funcs funcs_1 DECLSPEC_HIDDEN;
|
2011-04-05 12:23:20 +00:00
|
|
|
extern const primitive_funcs funcs_null DECLSPEC_HIDDEN;
|
2011-04-07 12:48:39 +00:00
|
|
|
|
2011-08-02 13:11:07 +00:00
|
|
|
struct rop_codes
|
|
|
|
{
|
|
|
|
DWORD a1, a2, x1, x2;
|
|
|
|
};
|
|
|
|
|
2011-09-22 08:11:27 +00:00
|
|
|
#define OVERLAP_LEFT 0x01 /* dest starts left of source */
|
|
|
|
#define OVERLAP_RIGHT 0x02 /* dest starts right of source */
|
|
|
|
#define OVERLAP_ABOVE 0x04 /* dest starts above source */
|
|
|
|
#define OVERLAP_BELOW 0x08 /* dest starts below source */
|
|
|
|
|
2011-09-27 15:13:36 +00:00
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
unsigned int dx, dy;
|
|
|
|
int bias;
|
|
|
|
DWORD octant;
|
|
|
|
} bres_params;
|
|
|
|
|
2011-12-27 13:31:11 +00:00
|
|
|
struct clipped_rects
|
|
|
|
{
|
|
|
|
RECT *rects;
|
|
|
|
int count;
|
|
|
|
RECT buffer[32];
|
|
|
|
};
|
|
|
|
|
2011-10-03 11:25:34 +00:00
|
|
|
extern void get_rop_codes(INT rop, struct rop_codes *codes) DECLSPEC_HIDDEN;
|
2011-05-06 10:48:34 +00:00
|
|
|
extern void reset_dash_origin(dibdrv_physdev *pdev) DECLSPEC_HIDDEN;
|
2012-05-23 09:56:38 +00:00
|
|
|
extern void init_dib_info_from_bitmapinfo(dib_info *dib, const BITMAPINFO *info, void *bits) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL init_dib_info_from_bitmapobj(dib_info *dib, BITMAPOBJ *bmp) DECLSPEC_HIDDEN;
|
2011-07-12 15:12:04 +00:00
|
|
|
extern void free_dib_info(dib_info *dib) DECLSPEC_HIDDEN;
|
2011-12-30 09:17:37 +00:00
|
|
|
extern void free_pattern_brush(dib_brush *brush) DECLSPEC_HIDDEN;
|
2011-05-12 11:05:37 +00:00
|
|
|
extern void copy_dib_color_info(dib_info *dst, const dib_info *src) DECLSPEC_HIDDEN;
|
|
|
|
extern BOOL convert_dib(dib_info *dst, const dib_info *src) DECLSPEC_HIDDEN;
|
2012-11-30 16:24:05 +00:00
|
|
|
extern DWORD get_pixel_color( HDC hdc, const dib_info *dib, COLORREF color, BOOL mono_fixup ) DECLSPEC_HIDDEN;
|
2012-07-30 11:59:04 +00:00
|
|
|
extern int clip_rect_to_dib( const dib_info *dib, RECT *rc ) DECLSPEC_HIDDEN;
|
2011-12-27 13:31:11 +00:00
|
|
|
extern int get_clipped_rects( const dib_info *dib, const RECT *rc, HRGN clip, struct clipped_rects *clip_rects ) DECLSPEC_HIDDEN;
|
2012-04-25 11:15:24 +00:00
|
|
|
extern void add_clipped_bounds( dibdrv_physdev *dev, const RECT *rect, HRGN clip ) DECLSPEC_HIDDEN;
|
2011-09-27 15:13:36 +00:00
|
|
|
extern int clip_line(const POINT *start, const POINT *end, const RECT *clip,
|
|
|
|
const bres_params *params, POINT *pt1, POINT *pt2) DECLSPEC_HIDDEN;
|
2012-11-27 22:19:29 +00:00
|
|
|
extern void release_cached_font( struct cached_font *font ) DECLSPEC_HIDDEN;
|
2011-04-11 09:00:28 +00:00
|
|
|
|
2011-12-27 13:31:11 +00:00
|
|
|
static inline void init_clipped_rects( struct clipped_rects *clip_rects )
|
|
|
|
{
|
|
|
|
clip_rects->count = 0;
|
|
|
|
clip_rects->rects = clip_rects->buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void free_clipped_rects( struct clipped_rects *clip_rects )
|
|
|
|
{
|
|
|
|
if (clip_rects->rects != clip_rects->buffer) HeapFree( GetProcessHeap(), 0, clip_rects->rects );
|
|
|
|
}
|
|
|
|
|
2011-12-04 16:10:30 +00:00
|
|
|
/* compute the x coordinate corresponding to y on the specified edge */
|
|
|
|
static inline int edge_coord( int y, int x1, int y1, int x2, int y2 )
|
|
|
|
{
|
|
|
|
if (x2 > x1) /* always follow the edge from right to left to get correct rounding */
|
|
|
|
return x2 + (y - y2) * (x2 - x1) / (y2 - y1);
|
|
|
|
else
|
|
|
|
return x1 + (y - y1) * (x2 - x1) / (y2 - y1);
|
|
|
|
}
|
2012-05-23 09:34:22 +00:00
|
|
|
|
|
|
|
static inline const RGBQUAD *get_dib_color_table( const dib_info *dib )
|
|
|
|
{
|
|
|
|
return dib->color_table ? dib->color_table : get_default_color_table( dib->bit_count );
|
|
|
|
}
|