docs/examples/Colors

Change-Id: I61a295daacaf8a4b0350ae7fc7641059a990552a
Reviewed-on: https://skia-review.googlesource.com/c/skia/+/212020
Commit-Queue: Hal Canary <halcanary@google.com>
Commit-Queue: Brian Osman <brianosman@google.com>
Auto-Submit: Hal Canary <halcanary@google.com>
Reviewed-by: Brian Osman <brianosman@google.com>
This commit is contained in:
Hal Canary 2019-05-03 14:07:22 -04:00 committed by Skia Commit-Bot
parent e4e9551cc8
commit ccab1cc6f4
2 changed files with 29 additions and 0 deletions

28
docs/examples/Colors.cpp Normal file
View File

@ -0,0 +1,28 @@
// Copyright 2019 Google LLC.
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
#include "tools/fiddle/examples.h"
REG_FIDDLE(Colors, 128, 256, false, 0) {
void draw(SkCanvas* canvas) {
const struct { SkColor4f fColor; const char* fName; } kColors[] = {
{SkColors::kBlack, "SkColors::kBlack"},
{SkColors::kDkGray, "SkColors::kDkGray"},
{SkColors::kGray, "SkColors::kGray"},
{SkColors::kLtGray, "SkColors::kLtGray"},
{SkColors::kWhite, "SkColors::kWhite"},
{SkColors::kRed, "SkColors::kRed"},
{SkColors::kGreen, "SkColors::kGreen"},
{SkColors::kBlue, "SkColors::kBlue"},
{SkColors::kYellow, "SkColors::kYellow"},
{SkColors::kCyan, "SkColors::kCyan"},
{SkColors::kMagenta, "SkColors::kMagenta"},
};
float y = 0;
constexpr float kSize = 256.0f / (sizeof(kColors) / sizeof(kColors[0]));
const SkColor4f kBrown{0.5f, 0.25f, 0, 1};
for (const auto& c : kColors) {
canvas->drawRect(SkRect{0, y, 128, y + kSize}, SkPaint(c.fColor));
canvas->drawString(c.fName, 4, y + kSize * 0.7f, SkFont(), SkPaint(kBrown));
y += kSize;
}
}
} // END FIDDLE

View File

@ -247,6 +247,7 @@
#include "../../docs/examples/Color_Type_RGB_101010.cpp"
#include "../../docs/examples/Color_Type_RGB_565.cpp"
#include "../../docs/examples/Color_Type_RGB_888.cpp"
#include "../../docs/examples/Colors.cpp"
#include "../../docs/examples/Conic_Weight_a.cpp"
#include "../../docs/examples/Conic_Weight_b.cpp"
#include "../../docs/examples/Conic_Weight_c.cpp"