~ilya-yanok/ubuntu/precise/grub2/fix-for-948716

« back to all changes in this revision

Viewing changes to include/grub/i386/pc/vbefill.h

  • Committer: Bazaar Package Importer
  • Author(s): Robert Millan
  • Date: 2009-07-25 19:00:53 UTC
  • mfrom: (1.6.3 upstream)
  • mto: (17.4.13 sid)
  • mto: This revision was merged to the branch mainline in revision 53.
  • Revision ID: james.westby@ubuntu.com-20090725190053-uv3lm6ya3zxs77ep
ImportĀ upstreamĀ versionĀ 1.96+20090725

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  GRUB  --  GRand Unified Bootloader
 
3
 *  Copyright (C) 2006,2007,2008  Free Software Foundation, Inc.
 
4
 *
 
5
 *  GRUB is free software: you can redistribute it and/or modify
 
6
 *  it under the terms of the GNU General Public License as published by
 
7
 *  the Free Software Foundation, either version 3 of the License, or
 
8
 *  (at your option) any later version.
 
9
 *
 
10
 *  GRUB is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
#ifndef GRUB_VBEFILL_MACHINE_HEADER
 
20
#define GRUB_VBEFILL_MACHINE_HEADER     1
 
21
 
 
22
/* NOTE: This header is private header for vbe driver and should not be used
 
23
   in other parts of the code.  */
 
24
 
 
25
struct grub_video_i386_vbeblit_info;
 
26
 
 
27
void
 
28
grub_video_i386_vbefill (struct grub_video_i386_vbeblit_info *dst,
 
29
                         grub_video_color_t color, int x, int y,
 
30
                         int width, int height);
 
31
 
 
32
void
 
33
grub_video_i386_vbefill_direct32 (struct grub_video_i386_vbeblit_info *dst,
 
34
                                  grub_video_color_t color,  int x, int y,
 
35
                                  int width, int height);
 
36
 
 
37
void
 
38
grub_video_i386_vbefill_direct24 (struct grub_video_i386_vbeblit_info *dst,
 
39
                                  grub_video_color_t color, int x, int y,
 
40
                                  int width, int height);
 
41
 
 
42
void
 
43
grub_video_i386_vbefill_direct16 (struct grub_video_i386_vbeblit_info *dst,
 
44
                                  grub_video_color_t color, int x, int y,
 
45
                                  int width, int height);
 
46
 
 
47
void
 
48
grub_video_i386_vbefill_direct8 (struct grub_video_i386_vbeblit_info *dst,
 
49
                                 grub_video_color_t color, int x, int y,
 
50
                                 int width, int height);
 
51
 
 
52
#endif /* ! GRUB_VBEFILL_MACHINE_HEADER */