Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: src/effects/gradients/SkLinearGradient.cpp

Issue 571163002: removing GrDrawEffect (Closed) Base URL: https://skia.googlesource.com/skia.git@gp3
Patch Set: rebase after revert Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2012 Google Inc. 2 * Copyright 2012 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkLinearGradient.h" 8 #include "SkLinearGradient.h"
9 9
10 static inline int repeat_bits(int x, const int bits) { 10 static inline int repeat_bits(int x, const int bits) {
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 461
462 #include "GrTBackendEffectFactory.h" 462 #include "GrTBackendEffectFactory.h"
463 #include "gl/builders/GrGLProgramBuilder.h" 463 #include "gl/builders/GrGLProgramBuilder.h"
464 #include "SkGr.h" 464 #include "SkGr.h"
465 465
466 ///////////////////////////////////////////////////////////////////// 466 /////////////////////////////////////////////////////////////////////
467 467
468 class GrGLLinearGradient : public GrGLGradientEffect { 468 class GrGLLinearGradient : public GrGLGradientEffect {
469 public: 469 public:
470 470
471 GrGLLinearGradient(const GrBackendEffectFactory& factory, const GrDrawEffect &) 471 GrGLLinearGradient(const GrBackendEffectFactory& factory, const GrEffect&)
472 : INHERITED (factory) { } 472 : INHERITED (factory) { }
473 473
474 virtual ~GrGLLinearGradient() { } 474 virtual ~GrGLLinearGradient() { }
475 475
476 virtual void emitCode(GrGLProgramBuilder*, 476 virtual void emitCode(GrGLProgramBuilder*,
477 const GrDrawEffect&, 477 const GrEffect&,
478 const GrEffectKey&, 478 const GrEffectKey&,
479 const char* outputColor, 479 const char* outputColor,
480 const char* inputColor, 480 const char* inputColor,
481 const TransformedCoordsArray&, 481 const TransformedCoordsArray&,
482 const TextureSamplerArray&) SK_OVERRIDE; 482 const TextureSamplerArray&) SK_OVERRIDE;
483 483
484 static void GenKey(const GrDrawEffect& drawEffect, const GrGLCaps&, GrEffect KeyBuilder* b) { 484 static void GenKey(const GrEffect& effect, const GrGLCaps&, GrEffectKeyBuild er* b) {
485 b->add32(GenBaseGradientKey(drawEffect)); 485 b->add32(GenBaseGradientKey(effect));
486 } 486 }
487 487
488 private: 488 private:
489 489
490 typedef GrGLGradientEffect INHERITED; 490 typedef GrGLGradientEffect INHERITED;
491 }; 491 };
492 492
493 ///////////////////////////////////////////////////////////////////// 493 /////////////////////////////////////////////////////////////////////
494 494
495 class GrLinearGradient : public GrGradientEffect { 495 class GrLinearGradient : public GrGradientEffect {
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
544 SkPaint paint; 544 SkPaint paint;
545 GrColor paintColor; 545 GrColor paintColor;
546 GrEffect* effect; 546 GrEffect* effect;
547 SkAssertResult(shader->asNewEffect(context, paint, NULL, &paintColor, &effec t)); 547 SkAssertResult(shader->asNewEffect(context, paint, NULL, &paintColor, &effec t));
548 return effect; 548 return effect;
549 } 549 }
550 550
551 ///////////////////////////////////////////////////////////////////// 551 /////////////////////////////////////////////////////////////////////
552 552
553 void GrGLLinearGradient::emitCode(GrGLProgramBuilder* builder, 553 void GrGLLinearGradient::emitCode(GrGLProgramBuilder* builder,
554 const GrDrawEffect&, 554 const GrEffect&,
555 const GrEffectKey& key, 555 const GrEffectKey& key,
556 const char* outputColor, 556 const char* outputColor,
557 const char* inputColor, 557 const char* inputColor,
558 const TransformedCoordsArray& coords, 558 const TransformedCoordsArray& coords,
559 const TextureSamplerArray& samplers) { 559 const TextureSamplerArray& samplers) {
560 uint32_t baseKey = key.get32(0); 560 uint32_t baseKey = key.get32(0);
561 this->emitUniforms(builder, baseKey); 561 this->emitUniforms(builder, baseKey);
562 SkString t = builder->getFragmentShaderBuilder()->ensureFSCoords2D(coords, 0 ); 562 SkString t = builder->getFragmentShaderBuilder()->ensureFSCoords2D(coords, 0 );
563 t.append(".x"); 563 t.append(".x");
564 this->emitColor(builder, t.c_str(), baseKey, outputColor, inputColor, sample rs); 564 this->emitColor(builder, t.c_str(), baseKey, outputColor, inputColor, sample rs);
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
606 str->append("SkLinearGradient ("); 606 str->append("SkLinearGradient (");
607 607
608 str->appendf("start: (%f, %f)", fStart.fX, fStart.fY); 608 str->appendf("start: (%f, %f)", fStart.fX, fStart.fY);
609 str->appendf(" end: (%f, %f) ", fEnd.fX, fEnd.fY); 609 str->appendf(" end: (%f, %f) ", fEnd.fX, fEnd.fY);
610 610
611 this->INHERITED::toString(str); 611 this->INHERITED::toString(str);
612 612
613 str->append(")"); 613 str->append(")");
614 } 614 }
615 #endif 615 #endif
OLDNEW
« no previous file with comments | « src/effects/gradients/SkGradientShaderPriv.h ('k') | src/effects/gradients/SkRadialGradient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698