Index: src/utils/SkTextureCompressor_R11EAC.cpp |
diff --git a/src/utils/SkTextureCompressor_R11EAC.cpp b/src/utils/SkTextureCompressor_R11EAC.cpp |
index 5ccd50bd324fb726227247d29738f2d69d0b2be4..9996eb9596f5e71e7eb8d8c3d429f3034bd75da5 100644 |
--- a/src/utils/SkTextureCompressor_R11EAC.cpp |
+++ b/src/utils/SkTextureCompressor_R11EAC.cpp |
@@ -603,8 +603,15 @@ struct CompressorR11EAC { |
*(reinterpret_cast<uint64_t*>(dst)) = compress_r11eac_block_fast(src, srcRowBytes); |
} |
- static inline void UpdateBlock(uint8_t* dst, const uint8_t* src) { |
+#if PEDANTIC_BLIT_RECT |
+ static inline void UpdateBlock(uint8_t* dst, const uint8_t* src, int srcRowBytes, |
+ const uint8_t* mask) { |
+ // TODO: krajcevski |
+ // The implementation of this function should be similar to that of LATC, since |
+ // the R11EAC indices directly correspond to pixel values. |
+ SkFAIL("Implement me!"); |
} |
+#endif |
}; |
//////////////////////////////////////////////////////////////////////////////// |