1
0
mirror of https://github.com/microsoft/DirectXTex synced 2024-11-09 22:40:06 +00:00

Updated EvaluateImage (markdown)

Chuck Walbourn 2016-09-23 17:25:08 -07:00
parent 18853a9442
commit 89ba1ecef1

@ -5,6 +5,11 @@ Evaluates a user-supplied function across an image.
void(const XMVECTOR* pixels, size_t width, size_t y)
> pixelFunc );
HRESULT EvaluateImage(const Image* srcImages, size_t nimages, const TexMetadata& metadata,
std::function<
void(const XMVECTOR* pixels, size_t width, size_t y)
> pixelFunc );
**Breaking change notice:** The first release of this function was ``Evaluate`` but this generic name can cause conflicts in some client code so it was renamed ``EvaluateImage``.
# Parameters