3dphotoshoot

view src/pc/camera.c @ 25:ac80210d5fbe

preparing a pc version for easier development of non-android-specifics
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 18 Jun 2015 03:12:30 +0300
parents
children a460b1e5af4a
line source
1 #include "camera.h"
3 int cam_init(void *platform_data)
4 {
5 return -1;
6 }
8 void cam_shutdown(void)
9 {
10 }
12 unsigned int cam_texture(void)
13 {
14 }
16 const float *cam_texture_matrix(void)
17 {
18 }
20 int cam_start_video(void)
21 {
22 }
24 int cam_stop_video(void)
25 {
26 }
28 int cam_update(void)
29 {
30 }
32 int cam_is_capturing(void)
33 {
34 }
36 int cam_video_size(int *xsz, int *ysz)
37 {
38 }
40 int cam_take_picture(void)
41 {
42 }