HomeSort by relevance Sort by last modified time
    Searched full:row_pixels (Results 1 - 1 of 1) sorted by null

  /bootable/recovery/minui/
graphics.cpp 82 static void incr_x(uint32_t** p, int row_pixels) {
84 *p = *p + (rotation == 1 ? 1 : -1) * row_pixels;
91 static void incr_y(uint32_t** p, int row_pixels) {
95 *p = *p + (rotation ? -1 : 1) * row_pixels;
100 static uint32_t* pixel_at(GRSurface* surf, int x, int y, int row_pixels) {
103 return reinterpret_cast<uint32_t*>(surf->data) + y * row_pixels + x;
105 return reinterpret_cast<uint32_t*>(surf->data) + x * row_pixels + (surf->width - y);
107 return reinterpret_cast<uint32_t*>(surf->data) + (surf->height - 1 - y) * row_pixels +
110 return reinterpret_cast<uint32_t*>(surf->data) + (surf->height - 1 - x) * row_pixels + y;
154 int row_pixels = gr_draw->row_bytes / gr_draw->pixel_bytes local
179 int row_pixels = gr_draw->row_bytes \/ gr_draw->pixel_bytes; local
222 int row_pixels = gr_draw->row_bytes \/ gr_draw->pixel_bytes; local
252 int row_pixels = gr_draw->row_bytes \/ gr_draw->pixel_bytes; local
    [all...]

Completed in 2028 milliseconds