| OLD | NEW |
| 1 | 1 |
| 2 #include "SkBitmap.h" | 2 #include "SkBitmap.h" |
| 3 #include "SkTableColorFilter.h" | 3 #include "SkTableColorFilter.h" |
| 4 #include "SkColorPriv.h" | 4 #include "SkColorPriv.h" |
| 5 #include "SkReadBuffer.h" | 5 #include "SkReadBuffer.h" |
| 6 #include "SkWriteBuffer.h" | 6 #include "SkWriteBuffer.h" |
| 7 #include "SkUnPreMultiply.h" | 7 #include "SkUnPreMultiply.h" |
| 8 #include "SkString.h" | 8 #include "SkString.h" |
| 9 | 9 |
| 10 class SkTable_ColorFilter : public SkColorFilter { | 10 class SkTable_ColorFilter : public SkColorFilter { |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 287 public: | 287 public: |
| 288 static GrFragmentProcessor* Create(GrTexture* texture, unsigned flags) { | 288 static GrFragmentProcessor* Create(GrTexture* texture, unsigned flags) { |
| 289 return SkNEW_ARGS(ColorTableEffect, (texture, flags)); | 289 return SkNEW_ARGS(ColorTableEffect, (texture, flags)); |
| 290 } | 290 } |
| 291 | 291 |
| 292 virtual ~ColorTableEffect(); | 292 virtual ~ColorTableEffect(); |
| 293 | 293 |
| 294 static const char* Name() { return "ColorTable"; } | 294 static const char* Name() { return "ColorTable"; } |
| 295 virtual const GrBackendFragmentProcessorFactory& getFactory() const SK_OVERR
IDE; | 295 virtual const GrBackendFragmentProcessorFactory& getFactory() const SK_OVERR
IDE; |
| 296 | 296 |
| 297 virtual void getConstantColorComponents(GrColor* color, uint32_t* validFlags
) const SK_OVERRIDE; | |
| 298 | |
| 299 typedef GLColorTableEffect GLProcessor; | 297 typedef GLColorTableEffect GLProcessor; |
| 300 | 298 |
| 301 private: | 299 private: |
| 302 virtual bool onIsEqual(const GrProcessor&) const SK_OVERRIDE; | 300 virtual bool onIsEqual(const GrProcessor&) const SK_OVERRIDE; |
| 303 | 301 |
| 302 virtual void onComputeInvariantOutput(InvariantOutput* inout) const SK_OVERR
IDE; |
| 303 |
| 304 explicit ColorTableEffect(GrTexture* texture, unsigned flags); | 304 explicit ColorTableEffect(GrTexture* texture, unsigned flags); |
| 305 | 305 |
| 306 GR_DECLARE_FRAGMENT_PROCESSOR_TEST; | 306 GR_DECLARE_FRAGMENT_PROCESSOR_TEST; |
| 307 | 307 |
| 308 GrTextureAccess fTextureAccess; | 308 GrTextureAccess fTextureAccess; |
| 309 unsigned fFlags; // currently not used in shader code, just to assist | 309 unsigned fFlags; // currently not used in shader code, just to assist |
| 310 // getConstantColorComponents(). | 310 // onComputeInvariantOutput(). |
| 311 | 311 |
| 312 typedef GrFragmentProcessor INHERITED; | 312 typedef GrFragmentProcessor INHERITED; |
| 313 }; | 313 }; |
| 314 | 314 |
| 315 class GLColorTableEffect : public GrGLFragmentProcessor { | 315 class GLColorTableEffect : public GrGLFragmentProcessor { |
| 316 public: | 316 public: |
| 317 GLColorTableEffect(const GrBackendProcessorFactory&, const GrProcessor&); | 317 GLColorTableEffect(const GrBackendProcessorFactory&, const GrProcessor&); |
| 318 | 318 |
| 319 virtual void emitCode(GrGLProgramBuilder*, | 319 virtual void emitCode(GrGLProgramBuilder*, |
| 320 const GrFragmentProcessor&, | 320 const GrFragmentProcessor&, |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 } | 394 } |
| 395 | 395 |
| 396 const GrBackendFragmentProcessorFactory& ColorTableEffect::getFactory() const { | 396 const GrBackendFragmentProcessorFactory& ColorTableEffect::getFactory() const { |
| 397 return GrTBackendFragmentProcessorFactory<ColorTableEffect>::getInstance(); | 397 return GrTBackendFragmentProcessorFactory<ColorTableEffect>::getInstance(); |
| 398 } | 398 } |
| 399 | 399 |
| 400 bool ColorTableEffect::onIsEqual(const GrProcessor& sBase) const { | 400 bool ColorTableEffect::onIsEqual(const GrProcessor& sBase) const { |
| 401 return this->texture(0) == sBase.texture(0); | 401 return this->texture(0) == sBase.texture(0); |
| 402 } | 402 } |
| 403 | 403 |
| 404 void ColorTableEffect::getConstantColorComponents(GrColor* color, uint32_t* vali
dFlags) const { | 404 void ColorTableEffect::onComputeInvariantOutput(InvariantOutput* inout) const { |
| 405 // If we kept the table in the effect then we could actually run known input
s through the | 405 // If we kept the table in the effect then we could actually run known input
s through the |
| 406 // table. | 406 // table. |
| 407 if (fFlags & SkTable_ColorFilter::kR_Flag) { | 407 if (fFlags & SkTable_ColorFilter::kR_Flag) { |
| 408 *validFlags &= ~kR_GrColorComponentFlag; | 408 inout->fValidFlags &= ~kR_GrColorComponentFlag; |
| 409 } | 409 } |
| 410 if (fFlags & SkTable_ColorFilter::kG_Flag) { | 410 if (fFlags & SkTable_ColorFilter::kG_Flag) { |
| 411 *validFlags &= ~kG_GrColorComponentFlag; | 411 inout->fValidFlags &= ~kG_GrColorComponentFlag; |
| 412 } | 412 } |
| 413 if (fFlags & SkTable_ColorFilter::kB_Flag) { | 413 if (fFlags & SkTable_ColorFilter::kB_Flag) { |
| 414 *validFlags &= ~kB_GrColorComponentFlag; | 414 inout->fValidFlags &= ~kB_GrColorComponentFlag; |
| 415 } | 415 } |
| 416 if (fFlags & SkTable_ColorFilter::kA_Flag) { | 416 if (fFlags & SkTable_ColorFilter::kA_Flag) { |
| 417 *validFlags &= ~kA_GrColorComponentFlag; | 417 inout->fValidFlags &= ~kA_GrColorComponentFlag; |
| 418 } | 418 } |
| 419 inout->fIsSingleComponent = false; |
| 419 } | 420 } |
| 420 | 421 |
| 421 | 422 |
| 422 /////////////////////////////////////////////////////////////////////////////// | 423 /////////////////////////////////////////////////////////////////////////////// |
| 423 | 424 |
| 424 GR_DEFINE_FRAGMENT_PROCESSOR_TEST(ColorTableEffect); | 425 GR_DEFINE_FRAGMENT_PROCESSOR_TEST(ColorTableEffect); |
| 425 | 426 |
| 426 GrFragmentProcessor* ColorTableEffect::TestCreate(SkRandom* random, | 427 GrFragmentProcessor* ColorTableEffect::TestCreate(SkRandom* random, |
| 427 GrContext* context, | 428 GrContext* context, |
| 428 const GrDrawTargetCaps&, | 429 const GrDrawTargetCaps&, |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 SkColorFilter* SkTableColorFilter::CreateARGB(const uint8_t tableA[256], | 471 SkColorFilter* SkTableColorFilter::CreateARGB(const uint8_t tableA[256], |
| 471 const uint8_t tableR[256], | 472 const uint8_t tableR[256], |
| 472 const uint8_t tableG[256], | 473 const uint8_t tableG[256], |
| 473 const uint8_t tableB[256]) { | 474 const uint8_t tableB[256]) { |
| 474 return SkNEW_ARGS(SkTable_ColorFilter, (tableA, tableR, tableG, tableB)); | 475 return SkNEW_ARGS(SkTable_ColorFilter, (tableA, tableR, tableG, tableB)); |
| 475 } | 476 } |
| 476 | 477 |
| 477 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_START(SkTableColorFilter) | 478 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_START(SkTableColorFilter) |
| 478 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkTable_ColorFilter) | 479 SK_DEFINE_FLATTENABLE_REGISTRAR_ENTRY(SkTable_ColorFilter) |
| 479 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_END | 480 SK_DEFINE_FLATTENABLE_REGISTRAR_GROUP_END |
| OLD | NEW |