Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 3039 → Rev 3038

/drivers/video/drm/i915/bitmap.h
17,7 → 17,7
kobj_t header;
 
u32 handle;
char *uaddr;
void *uaddr;
 
u32 pitch;
u32 gaddr;
50,20 → 50,15
 
struct io_call_12 /* SRV_LOCK_SURFACE */
{
u32 handle;
void *data;
u32 pitch;
};
u32 handle; // ignored
void *data; // ignored
 
struct io_call_14 /* SRV_RESIZE_SURFACE */
{
u32 handle;
void *data;
u32 new_width;
u32 new_height;
u32 pitch;
u32 width;
u32 height;
u32 pitch; // ignored
};
 
 
typedef struct
{
uint32_t idx;
98,7 → 93,6
int get_driver_caps(hwcaps_t *caps);
int create_surface(struct drm_device *dev, struct io_call_10 *pbitmap);
int lock_surface(struct io_call_12 *pbitmap);
int resize_surface(struct io_call_14 *pbitmap);
 
struct context *get_context(struct drm_device *dev);