Re: [Mesa-dev] [PATCH 02/10] egl: add simple EGL_EXT_device_base implementation

2018-08-29 Thread Emil Velikov
Hi Eric, On 29 August 2018 at 11:29, Eric Engestrom wrote: >> +EGLBoolean >> +_eglQueryDevicesEXT(EGLint max_devices, >> +_EGLDevice **devices, >> +EGLint *num_devices) >> +{ >> + _EGLDevice *dev, *devs; >> + int i = 0, num_devs; >> + >> + if ((devic

Re: [Mesa-dev] [PATCH 02/10] egl: add simple EGL_EXT_device_base implementation

2018-08-29 Thread Eric Engestrom
On Friday, 2018-08-03 13:44:18 +0100, Emil Velikov wrote: > From: Emil Velikov > > Introduce the API for device query and enumeration. Those at the moment > produce nothing useful since zero devices are actually available. > > With later commits we'll add support for software (always) and hardwa

[Mesa-dev] [PATCH 02/10] egl: add simple EGL_EXT_device_base implementation

2018-08-03 Thread Emil Velikov
From: Emil Velikov Introduce the API for device query and enumeration. Those at the moment produce nothing useful since zero devices are actually available. With later commits we'll add support for software (always) and hardware devices. Each one exposing the respective extension string. Note: