]> git.saurik.com Git - apple/boot.git/blob - i386/util/return_bitmap.h
boot-111.tar.gz
[apple/boot.git] / i386 / util / return_bitmap.h
1 /*
2 * Copyright (c) 1999 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
7 *
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * file.
14 *
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
22 *
23 * @APPLE_LICENSE_HEADER_END@
24 */
25 unsigned char return_bitmap_plane_0[] =
26 {
27 // plane 0
28 0x00, 0x02, 0x00, 0x02, 0x0c, 0x02, 0x14, 0x02, 0x20, 0x02, 0x40,
29 0x02, 0x00, 0x02, 0x07, 0xfe, 0x04, 0x00, 0x04, 0x00, };
30 unsigned char return_bitmap_plane_1[] =
31 {
32 // plane 1
33 0xff, 0xc0, 0xf3, 0xde, 0xe3, 0xde, 0xc8, 0x1e, 0x9f, 0xfe, 0x3f,
34 0xfe, 0xbf, 0xfe, 0xdf, 0xfe, 0xef, 0xfe, 0xf7, 0xfe, };
35 struct bitmap return_bitmap = {
36 0, // packed
37 20, // bytes_per_plane
38 2, // bytes_per_row
39 1, // bits per pixel
40 15, // width
41 10, // height
42 {
43 20,
44 20,
45 },
46 {
47 return_bitmap_plane_0,
48 return_bitmap_plane_1
49 }
50 };
51
52 #define return_bitmap_WIDTH 15
53 #define return_bitmap_HEIGHT 10