0ea85a3787
Based on patch created by Colin D Bennett <colin@gibibit.com>. Adds optimization support for BGR based modes. * include/grub/i386/pc/vbeblit.h (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8A8) Removed. (grub_video_i386_vbeblit_R8G8B8X8_R8G8B8X8): Likewise. (grub_video_i386_vbeblit_R8G8B8_R8G8B8A8): Likewise. (grub_video_i386_vbeblit_R8G8B8_R8G8B8X8): Likewise. (grub_video_i386_vbeblit_index_R8G8B8A8): Likewise. (grub_video_i386_vbeblit_index_R8G8B8X8): Likewise. (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8): Likewise. (grub_video_i386_vbeblit_R8G8B8_R8G8B8): Likewise. (grub_video_i386_vbeblit_index_R8G8B8): Likewise. (grub_video_i386_vbeblit_index_index): Likewise. (grub_video_i386_vbeblit_replace_directN): Added. (grub_video_i386_vbeblit_replace_BGRX8888_RGBX8888): Likewise. (grub_video_i386_vbeblit_replace_BGRX8888_RGB888): Likewise. (grub_video_i386_vbeblit_replace_BGR888_RGBX8888): Likewise. (grub_video_i386_vbeblit_replace_BGR888_RGB888): Likewise. (grub_video_i386_vbeblit_replace_RGBX8888_RGB888): Likewise. (grub_video_i386_vbeblit_replace_RGB888_RGBX8888): Likewise. (grub_video_i386_vbeblit_replace_index_RGBX8888): Likewise. (grub_video_i386_vbeblit_replace_index_RGB888): Likewise. (grub_video_i386_vbeblit_blend_BGRA8888_RGBA8888): Likewise. (grub_video_i386_vbeblit_blend_BGR888_RGBA8888): Likewise. (grub_video_i386_vbeblit_blend_RGBA8888_RGBA8888): Likewise. (grub_video_i386_vbeblit_blend_RGB888_RGBA8888): Likewise. (grub_video_i386_vbeblit_blend_index_RGBA8888): Likewise. * include/grub/i386/pc/vbefill.h (grub_video_i386_vbefill_R8G8B8A8) Removed. (grub_video_i386_vbefill_R8G8B8): Likewise. (grub_video_i386_vbefill_index): Likewise. (grub_video_i386_vbefill_direct32): Added. (grub_video_i386_vbefill_direct24): Likewise. (grub_video_i386_vbefill_direct16): Likewise. (grub_video_i386_vbefill_direct8): Likewise. * include/grub/video.h (grub_video_blit_format): Removed GRUB_VIDEO_BLIT_FORMAT_R8G8B8A8, GRUB_VIDEO_BLIT_FORMAT_R8G8B8. (grub_video_blit_format): Added GRUB_VIDEO_BLIT_FORMAT_RGBA_8888, GRUB_VIDEO_BLIT_FORMAT_BGRA_8888, GRUB_VIDEO_BLIT_FORMAT_RGB_888, GRUB_VIDEO_BLIT_FORMAT_BGR_888, GRUB_VIDEO_BLIT_FORMAT_RGB_565, GRUB_VIDEO_BLIT_FORMAT_BGR_565. * video/video.c (grub_video_get_blit_format): Updated to use new blit formats. Added handling for 16 bit color modes. * video/i386/pc/vbe.c (grub_video_vbe_fill_rect): Updated to use new fillers. (common_blitter): Updated to use new blitters. * video/i386/pc/vbeblit.c (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8A8): Removed. (grub_video_i386_vbeblit_R8G8B8X8_R8G8B8X8): Likewise. (grub_video_i386_vbeblit_R8G8B8_R8G8B8A8): Likewise. (grub_video_i386_vbeblit_R8G8B8_R8G8B8X8): Likewise. (grub_video_i386_vbeblit_index_R8G8B8A8): Likewise. (grub_video_i386_vbeblit_index_R8G8B8X8): Likewise. (grub_video_i386_vbeblit_R8G8B8A8_R8G8B8): Likewise. (grub_video_i386_vbeblit_R8G8B8_R8G8B8): Likewise. (grub_video_i386_vbeblit_index_R8G8B8): Likewise. (grub_video_i386_vbeblit_index_index): Likewise. (grub_video_i386_vbeblit_replace_directN): Added. (grub_video_i386_vbeblit_replace_BGRX8888_RGBX8888): Likewise. (grub_video_i386_vbeblit_replace_BGRX8888_RGB888): Likewise. (grub_video_i386_vbeblit_replace_BGR888_RGBX8888): Likewise. (grub_video_i386_vbeblit_replace_BGR888_RGB888): Likewise. (grub_video_i386_vbeblit_replace_RGBX8888_RGB888): Likewise. (grub_video_i386_vbeblit_replace_RGB888_RGBX8888): Likewise. (grub_video_i386_vbeblit_replace_index_RGBX8888): Likewise. (grub_video_i386_vbeblit_replace_index_RGB888): Likewise. (grub_video_i386_vbeblit_blend_BGRA8888_RGBA8888): Likewise. (grub_video_i386_vbeblit_blend_BGR888_RGBA8888): Likewise. (grub_video_i386_vbeblit_blend_RGBA8888_RGBA8888): Likewise. (grub_video_i386_vbeblit_blend_RGB888_RGBA8888): Likewise. (grub_video_i386_vbeblit_blend_index_RGBA8888): Likewise. * video/i386/pc/vbefill.c (grub_video_i386_vbefill_R8G8B8A8): Removed. (grub_video_i386_vbefill_R8G8B8): Likewise. (grub_video_i386_vbefill_index): Likewise. (grub_video_i386_vbefill_direct32): Added. (grub_video_i386_vbefill_direct24): Likewise. (grub_video_i386_vbefill_direct16): Likewise. (grub_video_i386_vbefill_direct8): Likewise. * video/readers/jpeg.c (grub_jpeg_decode_sos): Adapt to new blitter types. * video/readers/tga.c (grub_video_reader_tga): Adapt to new blitter types. * video/readers/png.c (grub_png_decode_image_header): Adapt to new blitter types. * video/bitmap.c (grub_video_bitmap_create): Adapt to new blitter types.
256 lines
6.5 KiB
C
256 lines
6.5 KiB
C
/*
|
|
* GRUB -- GRand Unified Bootloader
|
|
* Copyright (C) 2006,2007 Free Software Foundation, Inc.
|
|
*
|
|
* GRUB is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* GRUB 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <grub/video.h>
|
|
#include <grub/bitmap.h>
|
|
#include <grub/types.h>
|
|
#include <grub/dl.h>
|
|
#include <grub/mm.h>
|
|
#include <grub/misc.h>
|
|
|
|
/* List of bitmap readers registered to system. */
|
|
static grub_video_bitmap_reader_t bitmap_readers_list;
|
|
|
|
/* Register bitmap reader. */
|
|
void
|
|
grub_video_bitmap_reader_register (grub_video_bitmap_reader_t reader)
|
|
{
|
|
reader->next = bitmap_readers_list;
|
|
bitmap_readers_list = reader;
|
|
}
|
|
|
|
/* Unregister bitmap reader. */
|
|
void
|
|
grub_video_bitmap_reader_unregister (grub_video_bitmap_reader_t reader)
|
|
{
|
|
grub_video_bitmap_reader_t *p, q;
|
|
|
|
for (p = &bitmap_readers_list, q = *p; q; p = &(q->next), q = q->next)
|
|
if (q == reader)
|
|
{
|
|
*p = q->next;
|
|
break;
|
|
}
|
|
}
|
|
|
|
/* Creates new bitmap, saves created bitmap on success to *bitmap. */
|
|
grub_err_t
|
|
grub_video_bitmap_create (struct grub_video_bitmap **bitmap,
|
|
unsigned int width, unsigned int height,
|
|
enum grub_video_blit_format blit_format)
|
|
{
|
|
struct grub_video_mode_info *mode_info;
|
|
unsigned int size;
|
|
|
|
if (!bitmap)
|
|
return grub_error (GRUB_ERR_BAD_ARGUMENT, "Invalid argument.");
|
|
|
|
*bitmap = 0;
|
|
|
|
if (width == 0 || height == 0)
|
|
return grub_error (GRUB_ERR_BAD_ARGUMENT, "Invalid argument.");
|
|
|
|
*bitmap = (struct grub_video_bitmap *)grub_malloc (sizeof (struct grub_video_bitmap));
|
|
if (! *bitmap)
|
|
return grub_errno;
|
|
|
|
mode_info = &((*bitmap)->mode_info);
|
|
|
|
/* Populate mode_info. */
|
|
mode_info->width = width;
|
|
mode_info->height = height;
|
|
mode_info->blit_format = blit_format;
|
|
|
|
switch (blit_format)
|
|
{
|
|
case GRUB_VIDEO_BLIT_FORMAT_RGBA_8888:
|
|
mode_info->mode_type = GRUB_VIDEO_MODE_TYPE_RGB
|
|
| GRUB_VIDEO_MODE_TYPE_ALPHA;
|
|
mode_info->bpp = 32;
|
|
mode_info->bytes_per_pixel = 4;
|
|
mode_info->number_of_colors = 256;
|
|
mode_info->red_mask_size = 8;
|
|
mode_info->red_field_pos = 0;
|
|
mode_info->green_mask_size = 8;
|
|
mode_info->green_field_pos = 8;
|
|
mode_info->blue_mask_size = 8;
|
|
mode_info->blue_field_pos = 16;
|
|
mode_info->reserved_mask_size = 8;
|
|
mode_info->reserved_field_pos = 24;
|
|
break;
|
|
|
|
case GRUB_VIDEO_BLIT_FORMAT_RGB_888:
|
|
mode_info->mode_type = GRUB_VIDEO_MODE_TYPE_RGB;
|
|
mode_info->bpp = 24;
|
|
mode_info->bytes_per_pixel = 3;
|
|
mode_info->number_of_colors = 256;
|
|
mode_info->red_mask_size = 8;
|
|
mode_info->red_field_pos = 0;
|
|
mode_info->green_mask_size = 8;
|
|
mode_info->green_field_pos = 8;
|
|
mode_info->blue_mask_size = 8;
|
|
mode_info->blue_field_pos = 16;
|
|
mode_info->reserved_mask_size = 0;
|
|
mode_info->reserved_field_pos = 0;
|
|
break;
|
|
|
|
case GRUB_VIDEO_BLIT_FORMAT_INDEXCOLOR:
|
|
mode_info->mode_type = GRUB_VIDEO_MODE_TYPE_INDEX_COLOR;
|
|
mode_info->bpp = 8;
|
|
mode_info->bytes_per_pixel = 1;
|
|
mode_info->number_of_colors = 256;
|
|
mode_info->red_mask_size = 0;
|
|
mode_info->red_field_pos = 0;
|
|
mode_info->green_mask_size = 0;
|
|
mode_info->green_field_pos = 0;
|
|
mode_info->blue_mask_size = 0;
|
|
mode_info->blue_field_pos = 0;
|
|
mode_info->reserved_mask_size = 0;
|
|
mode_info->reserved_field_pos = 0;
|
|
break;
|
|
|
|
default:
|
|
grub_free (*bitmap);
|
|
*bitmap = 0;
|
|
|
|
return grub_error (GRUB_ERR_BAD_ARGUMENT,
|
|
"Unsupported bitmap format");
|
|
}
|
|
|
|
mode_info->pitch = width * mode_info->bytes_per_pixel;
|
|
|
|
/* Calculate size needed for the data. */
|
|
size = (width * mode_info->bytes_per_pixel) * height;
|
|
|
|
(*bitmap)->data = grub_malloc (size);
|
|
if (! (*bitmap)->data)
|
|
{
|
|
grub_free (*bitmap);
|
|
*bitmap = 0;
|
|
|
|
return grub_errno;
|
|
}
|
|
|
|
/* Clear bitmap. */
|
|
grub_memset ((*bitmap)->data, 0, size);
|
|
|
|
return GRUB_ERR_NONE;
|
|
}
|
|
|
|
/* Frees all resources allocated by bitmap. */
|
|
grub_err_t
|
|
grub_video_bitmap_destroy (struct grub_video_bitmap *bitmap)
|
|
{
|
|
if (! bitmap)
|
|
return GRUB_ERR_NONE;
|
|
|
|
grub_free (bitmap->data);
|
|
grub_free (bitmap);
|
|
|
|
return GRUB_ERR_NONE;
|
|
}
|
|
|
|
/* Match extension to filename. */
|
|
static int
|
|
match_extension (const char *filename, const char *ext)
|
|
{
|
|
int pos;
|
|
int ext_len;
|
|
|
|
pos = grub_strlen (filename);
|
|
ext_len = grub_strlen (ext);
|
|
|
|
if (! pos || ! ext_len || ext_len > pos)
|
|
return 0;
|
|
|
|
pos -= ext_len;
|
|
|
|
return grub_strcmp (filename + pos, ext) == 0;
|
|
}
|
|
|
|
/* Loads bitmap using registered bitmap readers. */
|
|
grub_err_t
|
|
grub_video_bitmap_load (struct grub_video_bitmap **bitmap,
|
|
const char *filename)
|
|
{
|
|
grub_video_bitmap_reader_t reader = bitmap_readers_list;
|
|
|
|
if (!bitmap)
|
|
return grub_error (GRUB_ERR_BAD_ARGUMENT, "Invalid argument.");
|
|
|
|
*bitmap = 0;
|
|
|
|
while (reader)
|
|
{
|
|
if (match_extension (filename, reader->extension))
|
|
return reader->reader (bitmap, filename);
|
|
|
|
reader = reader->next;
|
|
}
|
|
|
|
return grub_error(GRUB_ERR_BAD_FILE_TYPE, "unsupported bitmap format");
|
|
}
|
|
|
|
/* Return bitmap width. */
|
|
unsigned int
|
|
grub_video_bitmap_get_width (struct grub_video_bitmap *bitmap)
|
|
{
|
|
if (!bitmap)
|
|
return 0;
|
|
|
|
return bitmap->mode_info.width;
|
|
}
|
|
|
|
/* Return bitmap height. */
|
|
unsigned int
|
|
grub_video_bitmap_get_height (struct grub_video_bitmap *bitmap)
|
|
{
|
|
if (!bitmap)
|
|
return 0;
|
|
|
|
return bitmap->mode_info.height;
|
|
}
|
|
|
|
/* Return mode info for bitmap. */
|
|
void grub_video_bitmap_get_mode_info (struct grub_video_bitmap *bitmap,
|
|
struct grub_video_mode_info *mode_info)
|
|
{
|
|
if (!bitmap)
|
|
return;
|
|
|
|
*mode_info = bitmap->mode_info;
|
|
}
|
|
|
|
/* Return pointer to bitmap's raw data. */
|
|
void *grub_video_bitmap_get_data (struct grub_video_bitmap *bitmap)
|
|
{
|
|
if (!bitmap)
|
|
return 0;
|
|
|
|
return bitmap->data;
|
|
}
|
|
|
|
/* Initialize bitmap module. */
|
|
GRUB_MOD_INIT(video_bitmap)
|
|
{
|
|
}
|
|
|
|
/* Finalize bitmap module. */
|
|
GRUB_MOD_FINI(video_bitmap)
|
|
{
|
|
}
|