tizen 2.3 release
[apps/livebox/livebox-viewer.git] / dynamicbox_viewer / include / fb.h
1 /*
2  * Copyright 2013  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.1 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://floralicense.org/license/
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 struct fb_info;
18
19 extern int fb_init(void *disp);
20 extern int fb_fini(void);
21 extern const char *fb_id(struct fb_info *info);
22 extern int fb_get_size(struct fb_info *info, int *w, int *h);
23 extern int fb_sync(struct fb_info *info, int x, int y, int w, int h);
24 extern int fb_size(struct fb_info *info);
25 extern int fb_refcnt(void *data);
26 extern int fb_is_created(struct fb_info *info);
27 extern int fb_type(struct fb_info *info);
28
29 extern struct fb_info *fb_create(const char *filename, int w, int h);
30 extern int fb_destroy(struct fb_info *info);
31
32 extern void *fb_acquire_buffer(struct fb_info *info);
33 extern int fb_release_buffer(void *data);
34
35 /* End of a file */