blob: 66bbac435f7a256099554ba9ec37f3814fb5bdef [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=837a2bcc9fb9ce617a3420956cefc64a
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Bitmap_getAddr32, 256, 256, true, 3) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 uint32_t* row0 = source.getAddr32(0, 0);
8 uint32_t* row1 = source.getAddr32(0, 1);
9 size_t interval = (row1 - row0) * source.bytesPerPixel();
10 SkDebugf("addr interval %c= rowBytes\n", interval == source.rowBytes() ? '=' : '!');
11}
12} // END FIDDLE