skia2/tools/fiddle/examples.h
John Stiles 7bf799956d Reland "Add format-specifier warnings to SkDebugf."
This is a reland of e58831cd95

Original change's description:
> Add format-specifier warnings to SkDebugf.
>
> This CL fixes up many existing format-specifier violations in Skia.
> Note that GCC has a warning for formatting nothing, so existing calls to
> `SkDebugf("")` have been removed, or replaced with `SkDebugf("%s", "")`.
> These were apparently meant to be used as a place to set a breakpoint.
>
> Some of our clients also use SkDebug with bad format specifiers, so this
> check is currently only enabled when SKIA_IMPLEMENTATION is true.
>
> Change-Id: I8177a1298a624c6936adc24e0d8f481362a356d0
> Bug: skia:12143
> Reviewed-on: https://skia-review.googlesource.com/c/skia/+/420902
> Auto-Submit: John Stiles <johnstiles@google.com>
> Commit-Queue: Brian Osman <brianosman@google.com>
> Reviewed-by: Brian Osman <brianosman@google.com>

Bug: skia:12143
Change-Id: Id3c0c21436ebd13899908d5ed5d44c42a0e23921
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/421918
Commit-Queue: John Stiles <johnstiles@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
2021-06-25 17:57:43 +00:00

63 lines
2.2 KiB
C++

// Copyright 2019 Google LLC.
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
#ifndef examples_DEFINED
#define examples_DEFINED
#include "tools/Registry.h"
#include "skia.h"
#include <cinttypes>
#include <cmath>
#include <string>
namespace fiddle {
struct Example {
void (*fFunc)(SkCanvas*);
const char* fName;
double fAnimationDuration;
int fImageIndex;
int fWidth;
int fHeight;
int fOffscreenWidth;
int fOffscreenHeight;
int fOffscreenSampleCount;
bool fText;
bool fSRGB;
bool fF16;
bool fOffscreen;
bool fOffscreenTexturable;
bool fOffscreenMipMap;
};
}
extern GrBackendTexture backEndTexture;
extern GrBackendRenderTarget backEndRenderTarget;
extern GrBackendTexture backEndTextureRenderTarget;
extern SkBitmap source;
extern sk_sp<SkImage> image;
extern double duration; // The total duration of the animation in seconds.
extern double frame; // A value in [0, 1] of where we are in the animation.
#define REGISTER_FIDDLE(NAME, WIDTH, HEIGHT, TEXT, IMG_INDEX, DURATION, SRGB, F16, \
OFSCR, OFSCR_WIDTH, OFSCR_HEIGHT, OFSCR_SAMPLECOUNT, \
OFSCR_TEXTURABLE, OFSCR_MIPMAP) \
namespace example_##NAME { void draw(SkCanvas*); } \
sk_tools::Registry<fiddle::Example> reg_##NAME( \
fiddle::Example{&example_##NAME::draw, #NAME, DURATION, IMG_INDEX, \
WIDTH, HEIGHT, OFSCR_WIDTH, OFSCR_HEIGHT, OFSCR_SAMPLECOUNT, \
TEXT, SRGB, F16, OFSCR, OFSCR_TEXTURABLE, OFSCR_MIPMAP}); \
namespace example_##NAME
#define REG_FIDDLE_SRGB(NAME, W, H, T, I, DURATION, F16) \
REGISTER_FIDDLE(NAME, W, H, T, I, DURATION, true, F16, \
false, 64, 64, 0, false, false)
#define REG_FIDDLE_ANIMATED(NAME, W, H, T, I, DURATION) \
REGISTER_FIDDLE(NAME, W, H, T, I, DURATION, false, false, \
false, 64, 64, 0, false, false)
#define REG_FIDDLE(NAME, W, H, TEXT, I) \
REG_FIDDLE_ANIMATED(NAME, W, H, TEXT, I, 0)
#endif // examples_DEFINED