RetroArch
rbmp.h
Go to the documentation of this file.
1 /* Copyright (C) 2010-2018 The RetroArch team
2  *
3  * ---------------------------------------------------------------------------------------
4  * The following license statement only applies to this file (rbmp.h).
5  * ---------------------------------------------------------------------------------------
6  *
7  * Permission is hereby granted, free of charge,
8  * to any person obtaining a copy of this software and associated documentation files (the "Software"),
9  * to deal in the Software without restriction, including without limitation the rights to
10  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
11  * and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
16  * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
18  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
19  * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21  */
22 
23 #ifndef __LIBRETRO_SDK_FORMAT_RBMP_H__
24 #define __LIBRETRO_SDK_FORMAT_RBMP_H__
25 
26 #include <retro_common_api.h>
27 
28 #include <boolean.h>
29 
31 
33 {
39 };
40 
41 typedef struct rbmp rbmp_t;
42 
43 bool rbmp_save_image(
44  const char *filename,
45  const void *frame,
46  unsigned width,
47  unsigned height,
48  unsigned pitch,
49  enum rbmp_source_type type);
50 
51 int rbmp_process_image(rbmp_t *rbmp, void **buf,
52  size_t size, unsigned *width, unsigned *height);
53 
54 bool rbmp_set_buf_ptr(rbmp_t *rbmp, void *data);
55 
56 void rbmp_free(rbmp_t *rbmp);
57 
58 rbmp_t *rbmp_alloc(void);
59 
61 
62 #endif
Definition: rbmp.h:35
#define RETRO_BEGIN_DECLS
Definition: retro_common_api.h:41
Definition: rbmp.h:38
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: glext.h:8418
Definition: ffmpeg_core.c:151
bool rbmp_save_image(const char *filename, const void *frame, unsigned width, unsigned height, unsigned pitch, enum rbmp_source_type type)
Definition: rbmp_encode.c:211
GLsizeiptr size
Definition: glext.h:6559
Definition: rbmp.h:34
Definition: rbmp.h:36
Definition: ibxm.h:9
rbmp_t * rbmp_alloc(void)
Definition: rbmp.c:661
Definition: rbmp.h:37
GLenum type
Definition: glext.h:6233
Definition: rbmp.c:57
int rbmp_process_image(rbmp_t *rbmp, void **buf, size_t size, unsigned *width, unsigned *height)
Definition: rbmp.c:626
#define RETRO_END_DECLS
Definition: retro_common_api.h:42
void rbmp_free(rbmp_t *rbmp)
Definition: rbmp.c:653
GLint GLint GLsizei width
Definition: glext.h:6293
rbmp_source_type
Definition: rbmp.h:32
bool rbmp_set_buf_ptr(rbmp_t *rbmp, void *data)
Definition: rbmp.c:643
GLint GLint GLsizei GLsizei height
Definition: glext.h:6293