Lines Matching +full:apt +full:- +full:get
8 --------
16 -------------
20 1. Install GLEW and GLFW: ``sudo apt-get install libglew-dev libglfw3-dev``
23 -----------------------
25 1. Required linked libraries: -lGL -lGLEW -lglfw
27 .. code-block:: c
32 -----------
34 .. code-block:: c
59 /* get the mouse indev of the window texture */
81 --------------
83 The OpenGL driver can draw textures from the user. A third-party library could be
86 .. code-block:: c
117 /* get the mouse indev of this main texture */
201 -------------------------------
203 There is a renderer in LVGL which caches software-rendered areas as OpenGL textures.
207 .. code-block:: c
214 - Performance will be the same or slightly worse if the drawn areas are never found in the cache
217 - Layers with transparent pixels and an overall layer transparency will not blend correctly.
220 - Layers with rotation are not currently supported. Images with rotation are fine.