Tizen Native API  5.5
GLView

glview_inheritance_tree.png

A GLView widget allows for simple GL rendering in elementary environment. GLView hides all the complicated evas_gl details so that the user only has to deal with registering a few callback functions for rendering to a surface using OpenGL APIs.

This widget emits the following signals, besides the ones sent from GLView:

Below is an illustrative example of how to use GLView and and OpenGL to render in elementary environment. glview_example_01_page

Functions

Evas_Objectelm_glview_add (Evas_Object *parent)
void elm_glview_changed_set (Evas_Object *obj)
void elm_glview_size_get (const Evas_Object *obj, int *w, int *h)
void elm_glview_size_set (Evas_Object *obj, int w, int h)
void elm_glview_del_func_set (Evas_Object *obj, Elm_GLView_Func_Cb func)
void elm_glview_resize_func_set (Evas_Object *obj, Elm_GLView_Func_Cb func)
void elm_glview_render_func_set (Evas_Object *obj, Elm_GLView_Func_Cb func)

Function Documentation

Add a new glview to the parent

Parameters:
parentThe parent object
Returns:
The new object or NULL if it cannot be created
Since :
2.3
Examples:
glview_example_01.c.

Notifies that there has been changes in the GLView.

Parameters:
objThe GLView object
Since :
2.3
Examples:
glview_example_01.c.
void elm_glview_del_func_set ( Evas_Object obj,
Elm_GLView_Func_Cb  func 
)

Set the delete function that runs in the main loop.

Parameters:
objThe GLView object
funcThe callback function
Since :
2.3
Examples:
glview_example_01.c.
void elm_glview_render_func_set ( Evas_Object obj,
Elm_GLView_Func_Cb  func 
)

Set the render function that runs in the main loop.

Parameters:
objThe GLView object
funcThe callback function
Since :
2.3
Examples:
glview_example_01.c.
void elm_glview_resize_func_set ( Evas_Object obj,
Elm_GLView_Func_Cb  func 
)

Set the resize function that gets called when resize happens.

Parameters:
objThe GLView object
funcThe callback function
Since :
2.3
Examples:
glview_example_01.c.
void elm_glview_size_get ( const Evas_Object obj,
int *  w,
int *  h 
)

Gets the size of the GLView.

Parameters:
objThe GLView object
wpointer of int width
hpointer of int height
Since :
2.3
Examples:
glview_example_01.c.
void elm_glview_size_set ( Evas_Object obj,
int  w,
int  h 
)

Sets the size of the GLView.

Parameters:
objThe GLView object
wwidth of GLView
hheight of GLView
Since :
2.3