Subversion Repositories Kolibri OS

Compare Revisions

Regard whitespace Rev 4930 → Rev 5059

/contrib/sdk/sources/Intel-2D/sna/kgem.c
5667,10 → 5667,11
if (ret != 0) {
printf("Couldn't reference %s handle 0x%08x\n",
fb->name, fb->name);
return NULL;
return 0;
}
size = open_arg.size / PAGE_SIZE;
 
size = fb->pitch * fb->height / PAGE_SIZE;
 
bo = __kgem_bo_alloc(open_arg.handle, size);
if (!bo) {
return 0;
/contrib/sdk/sources/Intel-2D/sna/sna.c
1084,7 → 1084,7
{
surface_t *sf = to_surface(bitmap);
 
struct drm_i915_mask_update update;
struct drm_i915_mask update;
 
struct sna_composite_op composite;
struct _Pixmap src, dst, mask;