ImageLoader.hpp
Go to the documentation of this file.
1 #pragma once
2 
3 #include <iostream>
5 
6 namespace iv
7 {
8 
9 class StreamResource;
10 
12 {
15 };
16 
24 bool ImageLoader_Load( StreamResource * resource, PixelFormat format, std::function< void( ImageLoader_Metadata const &, uint8_t * bytes, size_t bytes_count ) > const & );
25 
26 }