~siretart/ubuntu/utopic/blender/libav10

« back to all changes in this revision

Viewing changes to source/blender/imbuf/intern/IMB_radiance_hdr.h

Tags: upstream-2.40
ImportĀ upstreamĀ versionĀ 2.40

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * IMB_radiance_hdr.h
 
3
 *
 
4
 * $Id:
 
5
 *
 
6
 * ***** BEGIN GPL LICENSE BLOCK *****
 
7
 *
 
8
 * This program is free software; you can redistribute it and/or
 
9
 * modify it under the terms of the GNU General Public License
 
10
 * as published by the Free Software Foundation; either version 2
 
11
 * of the License, or (at your option) any later version.
 
12
 *
 
13
 * This program is distributed in the hope that it will be useful,
 
14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * GNU General Public License for more details.
 
17
 *
 
18
 * You should have received a copy of the GNU General Public License
 
19
 * along with this program; if not, write to the Free Software Foundation,
 
20
 * Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
21
 *
 
22
 * The Original Code is Copyright
 
23
 * All rights reserved.
 
24
 *
 
25
 * The Original Code is: all of this file.
 
26
 *
 
27
 * Contributor(s): none yet.
 
28
 *
 
29
 * ***** END GPL LICENSE BLOCK *****
 
30
 */
 
31
 
 
32
#ifndef IMB_RADIANCE_HDR_H
 
33
#define IMB_RADIANCE_HDR_H
 
34
 
 
35
struct ImBuf;
 
36
 
 
37
int imb_is_a_hdr(void *buf);
 
38
 
 
39
struct ImBuf *imb_loadhdr(unsigned char *mem, int size, int flags);
 
40
short imb_savehdr(struct ImBuf * ibuf, char *name, int flags);
 
41
 
 
42
#endif