3dphotoshoot

diff 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 diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/pc/camera.c	Thu Jun 18 03:12:30 2015 +0300
     1.3 @@ -0,0 +1,42 @@
     1.4 +#include "camera.h"
     1.5 +
     1.6 +int cam_init(void *platform_data)
     1.7 +{
     1.8 +	return -1;
     1.9 +}
    1.10 +
    1.11 +void cam_shutdown(void)
    1.12 +{
    1.13 +}
    1.14 +
    1.15 +unsigned int cam_texture(void)
    1.16 +{
    1.17 +}
    1.18 +
    1.19 +const float *cam_texture_matrix(void)
    1.20 +{
    1.21 +}
    1.22 +
    1.23 +int cam_start_video(void)
    1.24 +{
    1.25 +}
    1.26 +
    1.27 +int cam_stop_video(void)
    1.28 +{
    1.29 +}
    1.30 +
    1.31 +int cam_update(void)
    1.32 +{
    1.33 +}
    1.34 +
    1.35 +int cam_is_capturing(void)
    1.36 +{
    1.37 +}
    1.38 +
    1.39 +int cam_video_size(int *xsz, int *ysz)
    1.40 +{
    1.41 +}
    1.42 +
    1.43 +int cam_take_picture(void)
    1.44 +{
    1.45 +}