aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu
diff options
context:
space:
mode:
authorGravatar jvanverth <jvanverth@google.com>2015-11-06 14:20:03 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-11-06 14:20:04 -0800
commit3b484a40b3be7f0262afadeaf6b741ba5cedcfe1 (patch)
tree85f5a9e4ea16172ba3147d0c27cfd035a65ffaf4 /src/gpu
parente8e17cf23d2a036f9b3050bedeb9d3a544221f4c (diff)
Add text animation sample; tweak DrawShip sample
Diffstat (limited to 'src/gpu')
-rw-r--r--src/gpu/GrTest.cpp31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/gpu/GrTest.cpp b/src/gpu/GrTest.cpp
index 4adc3f7b7b..7a44942a16 100644
--- a/src/gpu/GrTest.cpp
+++ b/src/gpu/GrTest.cpp
@@ -11,10 +11,12 @@
#include "GrBatchAtlas.h"
#include "GrBatchFontCache.h"
#include "GrContextOptions.h"
+#include "GrDrawContext.h"
#include "GrDrawingManager.h"
#include "GrGpuResourceCacheAccess.h"
#include "GrResourceCache.h"
#include "GrTextBlobCache.h"
+#include "SkGrPriv.h"
#include "SkString.h"
namespace GrTest {
@@ -97,6 +99,35 @@ void GrContext::printGpuStats() const {
SkDebugf("%s", out.c_str());
}
+void GrContext::drawFontCache(const SkRect& rect, GrMaskFormat format, const SkPaint& paint,
+ GrRenderTarget* target) {
+ GrBatchFontCache* cache = this->getBatchFontCache();
+
+ GrTexture* atlas = cache->getTexture(format);
+
+ SkAutoTUnref<GrDrawContext> drawContext(this->drawContext(target));
+ // TODO: add drawContext method to encapsulate this.
+
+ GrPaint grPaint;
+ SkMatrix mat;
+ mat.reset();
+ if (!SkPaintToGrPaint(this, paint, mat, &grPaint)) {
+ return;
+ }
+ SkMatrix textureMat;
+ textureMat.reset();
+ // TODO: use setScaleTranslate()
+ textureMat[SkMatrix::kMScaleX] = 1.0f/rect.width();
+ textureMat[SkMatrix::kMScaleY] = 1.0f/rect.height();
+ textureMat[SkMatrix::kMTransX] = -rect.fLeft/rect.width();
+ textureMat[SkMatrix::kMTransY] = -rect.fTop/rect.height();
+
+ grPaint.addColorTextureProcessor(atlas, textureMat);
+
+ GrClip clip;
+ drawContext->drawRect(clip, grPaint, mat, rect);
+}
+
#if GR_GPU_STATS
void GrGpu::Stats::dump(SkString* out) {
out->appendf("Render Target Binds: %d\n", fRenderTargetBinds);