Subversion Repositories Kolibri OS

Rev

Rev 3243 | Rev 3266 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3243 Rev 3263
Line 622... Line 622...
622
    move_cursor_kms(cursor, intel_crtc->cursor_x, intel_crtc->cursor_y);
622
    move_cursor_kms(cursor, intel_crtc->cursor_x, intel_crtc->cursor_y);
623
    return old;
623
    return old;
624
};
624
};
Line -... Line 625...
-
 
625
 
-
 
626
struct sna_fb
-
 
627
{
-
 
628
    uint32_t  width;
-
 
629
    uint32_t  height;
-
 
630
    uint32_t  pitch;
-
 
631
    uint32_t  tiling;
-
 
632
};
-
 
633
 
-
 
634
int i915_fbinfo(struct sna_fb *fb)
-
 
635
{
-
 
636
    fb->width  = os_display->width;
-
 
637
    fb->height = os_display->height;
-
 
638
    fb->pitch  = os_display->pitch;
-
 
639
    fb->tiling = 0;
-
 
640
 
-
 
641
    return 0;
Line 625... Line 642...
625
 
642
};
Line 626... Line 643...
626
 
643