Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 698944
Collapse All | Expand All

(-)a/main/vdp.c (-2 / +2 lines)
Lines 87-93 void vdp_describe(void); Link Here
87
void vdp_eventinit(void);
87
void vdp_eventinit(void);
88
void vdp_layer_simple(unsigned int layer, unsigned int priority,
88
void vdp_layer_simple(unsigned int layer, unsigned int priority,
89
                      uint8 *fielddata, unsigned int lineoffset);
89
                      uint8 *fielddata, unsigned int lineoffset);
90
inline void vdp_plotcell(uint8 *patloc, uint8 palette, uint8 flags,
90
static void vdp_plotcell(uint8 *patloc, uint8 palette, uint8 flags,
91
                         uint8 *cellloc, unsigned int lineoffset);
91
                         uint8 *cellloc, unsigned int lineoffset);
92
void vdp_sprites(unsigned int line, uint8 *pridata, uint8 *outdata);
92
void vdp_sprites(unsigned int line, uint8 *pridata, uint8 *outdata);
93
int vdp_sprite_simple(unsigned int priority, uint8 *framedata,
93
int vdp_sprite_simple(unsigned int priority, uint8 *framedata,
Lines 1733-1739 void vdp_endfield(void) Link Here
1733
     vdp_event_endline); */
1733
     vdp_event_endline); */
1734
}
1734
}
1735
1735
1736
inline void vdp_plotcell(uint8 *patloc, uint8 palette, uint8 flags,
1736
static void vdp_plotcell(uint8 *patloc, uint8 palette, uint8 flags,
1737
                         uint8 *cellloc, unsigned int lineoffset)
1737
                         uint8 *cellloc, unsigned int lineoffset)
1738
{
1738
{
1739
  int y, x;
1739
  int y, x;

Return to bug 698944