Browse Source

ImageImpl allows unpadded image formats, so no need to assert alignment there.

David Piuva 3 years ago
parent
commit
13770b4054
1 changed files with 0 additions and 1 deletions
  1. 0 1
      Source/DFPSR/image/Image.h

+ 0 - 1
Source/DFPSR/image/Image.h

@@ -49,7 +49,6 @@ private:
 		assert(this->height > 0);
 		assert(this->height > 0);
 		assert(this->stride >= this->width * this->pixelSize);
 		assert(this->stride >= this->width * this->pixelSize);
 		assert(this->pixelSize > 0);
 		assert(this->pixelSize > 0);
-		// TODO: Assert that the buffer is large enough to fit padding after each row
 	}
 	}
 public:
 public:
 	// Sub-images
 	// Sub-images