Change the LOG_TAG
[platform/framework/web/provider.git] / include / fb.h
1 /*
2  * Copyright 2012  Samsung Electronics Co., Ltd
3  *
4  * Licensed under the Flora License, Version 1.0 (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://www.tizenopensource.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_filename(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);
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
28 extern struct fb_info *fb_create(const char *filename, int w, int h);
29 extern int fb_destroy(struct fb_info *info);
30
31 extern void *fb_acquire_buffer(struct fb_info *info);
32 extern int fb_release_buffer(void *data);
33
34 extern const char *fb_id(struct fb_info *info);
35
36 extern int fb_create_gem(struct fb_info *info);
37 extern int fb_destroy_gem(struct fb_info *info);
38 extern void *fb_acquire_gem(struct fb_info *info);
39 extern int fb_release_gem(struct fb_info *info);
40 extern int fb_has_gem(struct fb_info *info);
41
42 /* End of a file */