diff options
Diffstat (limited to 'src/resources/dye.cpp')
-rw-r--r-- | src/resources/dye.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/resources/dye.cpp b/src/resources/dye.cpp index 34a1937a5..c7287ee8a 100644 --- a/src/resources/dye.cpp +++ b/src/resources/dye.cpp @@ -150,6 +150,9 @@ int Dye::getType() const void Dye::normalDye(uint32_t *restrict pixels, const int bufSize) const { + if (!pixels) + return; + #ifdef ENABLE_CILKPLUS cilk_for (int ptr = 0; ptr < bufSize; ptr ++) { @@ -265,6 +268,9 @@ endlabel:{} void Dye::normalOGLDye(uint32_t *restrict pixels, const int bufSize) const { + if (!pixels) + return; + #ifdef ENABLE_CILKPLUS cilk_for (int ptr = 0; ptr < bufSize; ptr ++) { |