yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
8abaec701
master
1// png-serialize-util.h 2#pragma once 3 4#include "core/slang-blob.h" 5 6namespace renderer_test 7{ 8 9struct PngSerializeUtil 10{ 11static Slang ::Result write ( 12const char * filename , 13ISlangBlob * pixels , 14uint32_t width , 15uint32_t height , 16uint32_t rowPitch ); 17}; 18 19}// namespace renderer_test