Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 815 → Rev 817

/programs/system/drivers/ati2d/accel_2d.h
6,20 → 6,26
#define COMPIZ 5
#define PIXMAP 6
#define PIXBLIT 7
#define PIXLOCK 8
 
 
typedef unsigned int color_t;
 
typedef struct
{
pixmap_t *dstpix;
 
int x;
int y;
int w;
int h;
u32 color;
u32_t w;
u32_t h;
color_t color;
}draw_t;
 
typedef struct
{
pixmap_t *dstpix;
 
int x;
int y;
int w;
53,12 → 59,14
 
typedef struct
{
u32_t pixmap;
pixmap_t *pixmap;
void *usermap;
u32_t format;
u32_t pitch;
 
u32_t width;
u32_t height;
u32_t pitch;
}new_pixmap_t;
}userpixmap_t;
 
typedef struct
{
86,10 → 94,12
 
int RadeonComposite( blit_t *blit);
 
int CreatePixmap(new_pixmap_t *io);
int CreatePixmap(userpixmap_t *io);
 
int PixBlit(pixblit_t* blit);
 
int LockPixmap(userpixmap_t *io);
 
# define RADEON_GMC_SRC_PITCH_OFFSET_CNTL (1 << 0)
# define RADEON_GMC_DST_PITCH_OFFSET_CNTL (1 << 1)
# define RADEON_GMC_BRUSH_SOLID_COLOR (13 << 4)