ReactOS 0.4.16-dev-2132-g3885311
xbox.h File Reference

Go to the source code of this file.

Macros

#define PrepareForSetPixel()
 

Functions

VOID InitPaletteWithTable (_In_reads_(Count) const ULONG *Table, _In_ ULONG Count)
 
VOID SetPixel (_In_ ULONG Left, _In_ ULONG Top, _In_ UCHAR Color)
 

Macro Definition Documentation

◆ PrepareForSetPixel

#define PrepareForSetPixel ( )

Definition at line 17 of file xbox.h.

Function Documentation

◆ InitPaletteWithTable()

VOID InitPaletteWithTable ( _In_reads_(Count) const ULONG Table,
_In_ ULONG  Count 
)

Definition at line 220 of file bootvid.c.

223{
225}
#define UNIMPLEMENTED
Definition: ntoskrnl.c:15

◆ SetPixel()

VOID SetPixel ( _In_ ULONG  Left,
_In_ ULONG  Top,
_In_ UCHAR  Color 
)

Definition at line 52 of file bootvid.c.

56{
57 PUSHORT PixelPosition;
58
59 /* Calculate the pixel position */
60 PixelPosition = &VgaArmBase[Left + (Top * SCREEN_WIDTH)];
61
62 /* Set our color */
64}
FORCEINLINE USHORT VidpBuildColor(_In_ UCHAR Color)
Definition: bootvid.c:36
static PUSHORT VgaArmBase
Definition: bootvid.c:29
#define WRITE_REGISTER_USHORT(r, v)
Definition: arm.h:14
static LPHIST_ENTRY Top
Definition: history.c:53
#define SCREEN_WIDTH
Definition: pc98video.c:24
uint16_t * PUSHORT
Definition: typedefs.h:56

Referenced by DisplayCharacter(), and VidSolidColorFill().