Lines Matching defs:stride
188 * @param stride The rowstride of the pixel buffer.
190 inline guint32 get_pixel(guchar *px, int x, int y, int stride) {
191 return *reinterpret_cast<guint32*>(px + y * stride + x * 4);
299 unsigned int stride;
324 guint32 pixel = get_pixel(px, x, y, bci.stride);
754 int stride = cairo_format_stride_for_width(CAIRO_FORMAT_ARGB32, width);
755 guchar *px = g_new(guchar, stride * height);
771 px, CAIRO_FORMAT_ARGB32, width, height, stride);
799 // px, CAIRO_FORMAT_ARGB32, width, height, stride);
838 bci.stride = stride;
891 guint32 orig_color = get_pixel(px, cx, cy, stride);