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

« back to all changes in this revision

Viewing changes to include/grub/i386/pc/vbeutil.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  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
/* NOTE: This header is private header for vbe driver and should not be used
 
20
   in other parts of the code.  */
 
21
 
 
22
#ifndef GRUB_VBEUTIL_MACHINE_HEADER
 
23
#define GRUB_VBEUTIL_MACHINE_HEADER     1
 
24
 
 
25
#include <grub/types.h>
 
26
#include <grub/video.h>
 
27
 
 
28
struct grub_video_i386_vbeblit_info
 
29
{
 
30
  struct grub_video_mode_info *mode_info;
 
31
  void *data;
 
32
};
 
33
 
 
34
grub_uint8_t *get_data_ptr (struct grub_video_i386_vbeblit_info *source,
 
35
                            unsigned int x, unsigned int y);
 
36
 
 
37
grub_video_color_t get_pixel (struct grub_video_i386_vbeblit_info *source,
 
38
                              unsigned int x, unsigned int y);
 
39
 
 
40
void set_pixel (struct grub_video_i386_vbeblit_info *source,
 
41
                unsigned int x, unsigned int y, grub_video_color_t color);
 
42
 
 
43
#endif /* ! GRUB_VBEUTIL_MACHINE_HEADER */