Subversion Repositories Kolibri OS

Rev

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

Rev 5375 Rev 6115
Line 177... Line 177...
177
    sw_lock_bitmap,
177
    sw_lock_bitmap,
178
    sw_resize_bitmap,
178
    sw_resize_bitmap,
179
    sw_blit,
179
    sw_blit,
180
    sw_create_client,
180
    sw_create_client,
181
    sw_resize_client,
181
    sw_resize_client,
-
 
182
    NULL,
182
    NULL
183
    NULL
183
};
184
};
Line 184... Line 185...
184
 
185
 
Line 253... Line 254...
253
    if (driver->fini)
254
    if (driver->fini)
254
        driver->fini();
255
        driver->fini();
255
};
256
};
Line -... Line 257...
-
 
257
 
-
 
258
 
-
 
259
planar_t* pxCreatePlanar(int name, int format,
-
 
260
                         uint32_t width, uint32_t height,
-
 
261
                         uint32_t offset0, uint32_t pitch0,
-
 
262
                         uint32_t offset1, uint32_t pitch1,
-
 
263
                         uint32_t offset2, uint32_t pitch2)
-
 
264
{
-
 
265
    if(driver->create_planar)
-
 
266
        return driver->create_planar(name, format, width, height,
-
 
267
                                     offset0, pitch0, offset1, pitch1,
-
 
268
                                     offset2, pitch2);
-
 
269
    else