FaceGen 3 SDKs Reference
Loading...
Searching...
No Matches
Fg3ImgIo.hpp
1//
2// Copyright (c) Singular Inversions Inc. 2010
3//
4// Authors: Andrew Beatty
5// Created: July 27, 2010
6//
7
8#ifndef FG3IMGIO_HPP
9#define FG3IMGIO_HPP
10
11#include "fimImg.hpp"
12#include "FgImageIo.hpp"
13
14namespace Fg {
15
16void
17fg3ImgConvert(
18 const FimImgRgbaUbC & in,
19 ImgRgba8 & out);
20
21void
22fg3ImgConvert(
23 const FimImgRgbaFC & in,
24 ImgRgba8 & out);
25
26void
27fg3ImgReadAnyFormat(
28 String8 const & fname,
29 FimImgRgbaUbC & img);
30
31}
32
33#endif
34