Lines Matching refs:configurations
253 - Specify a set of required configurations and use **eglChooseConfig** to enable EGL to recommend t…
257 …nfig(EGLDisplay dpy, // Handle to the EGL display connection for which configurations are selected.
259 …e selected configurations. The eglChooseConfig function selects the configurations that match the …
261 … EGLint *num_config); // Number of configurations that match the attributes.
273 …configurations that match the attributes are returned and stored in the **config** array. In the s…
275 - Use **eglGetConfigs** to query all supported configurations and use **eglGetConfigAttrib** to fil…
276 The following describes how to use this method to obtain the desired configurations.
287 // Obtain all the configurations.
316 …(EGLDisplay display, // Handle to the EGL display connection for which configurations are selected.
317 EGLConfig *configs, // Array for storing the obtained configurations.
319 EGLint *num_config); // Number of available configurations.
324 …ble configurations obtained is saved in **num_config**. In this case, **configs** can be initializ…
325 …- If **configs** is configured to accept all configurations, all configurations obtained are saved…
345 …(EGLDisplay display, // Handle to the EGL display connection for which configurations are selected.
354 After obtaining the EGL configurations that meet the rendering requirements, use **eglCreateWindowS…