Re: [Mesa-dev] [PATCH] EGL/mesa: Initial write up fot MESA_query_driver

2018-12-31 Thread Veluri Mithun
luri. On Wed, Dec 26, 2018 at 12:16 AM Veluri Mithun wrote: > Hi Everyone, > > I've completed the extension and I verified all the api functions with > sample code and they are working fine. > > Please review the MR: > https://gitlab.freedesktop.org/mesa/mesa/merge_requests/

Re: [Mesa-dev] [PATCH] EGL/mesa: Initial write up fot MESA_query_driver

2018-12-25 Thread Veluri Mithun
Hi Everyone, I've completed the extension and I verified all the api functions with sample code and they are working fine. Please review the MR: https://gitlab.freedesktop.org/mesa/mesa/merge_requests/47 Thanks and Regards, Veluri Mithun. On Sun, Dec 23, 2018 at 2:06 PM Veluri Mithun wrote

Re: [Mesa-dev] [PATCH] EGL/mesa: Initial write up fot MESA_query_driver

2018-12-23 Thread Veluri Mithun
Hi Rob, I tested the below code with the same sample code(correcting some mistakes..). we are able to retrieve driverName correctly. @Nicolai Hähnle , @Adam Jackson , @Emil Velikov , @Eric Engestrom Any feedback is appreciated. Thank you. Cheers, Veluri.

Re: [Mesa-dev] [PATCH] EGL/mesa: Initial write up fot MESA_query_driver

2018-12-22 Thread Veluri Mithun
- Try to retrieve driver name from dri2_egl_display Signed-off-by: Veluri Mithun --- docs/specs/EGL_MESA_query_driver.txt | 54 src/egl/main/eglapi.c| 13 +++ src/egl/main/egldriver.c | 8 + src/egl/main/egldriver.h

Re: [Mesa-dev] [PATCH] EGL/mesa: Initial write up fot MESA_query_driver

2018-12-15 Thread Veluri Mithun
ink about this. Thanks, Veluri. On Sat, Dec 15, 2018 at 10:25 PM Veluri Mithun wrote: > Signed-off-by: Veluri Mithun > --- > docs/specs/EGL_MESA_query_driver.txt | 54 > 1 file changed, 54 insertions(+) > create mode 100644 docs/specs/EGL_MES

[Mesa-dev] [PATCH] EGL/mesa: Initial write up fot MESA_query_driver

2018-12-15 Thread Veluri Mithun
Signed-off-by: Veluri Mithun --- docs/specs/EGL_MESA_query_driver.txt | 54 1 file changed, 54 insertions(+) create mode 100644 docs/specs/EGL_MESA_query_driver.txt diff --git a/docs/specs/EGL_MESA_query_driver.txt b/docs/specs/EGL_MESA_query_driver.txt new file

[Mesa-dev] [PATCH] EGL/mesa: Initial write up for MESA_query_renderer

2018-12-06 Thread Veluri Mithun
00..2acff6a551 --- /dev/null +++ b/docs/specs/EGL_MESA_query_renderer.txt @@ -0,0 +1,184 @@ +Name + +MESA_query_renderer + +Name Strings + +EGL_MESA_query_renderer + +Contact + +Rob Clark +Nicolai H??hnle + +Contributors + +Veluri Mithun + +Status + +XXX

Re: [Mesa-dev] [PATCH EGL/MESA] EGL/mesa: Initial write up for EGL_MESA_query_driver

2018-11-08 Thread Veluri Mithun
Hi Rob, FYI, we are implementing this extension for getScreenDriver and getDrvierConfig functions. This extension is different from queryRenderer. Thanks, Veluri. On Mon, Nov 5, 2018 at 11:38 PM Veluri Mithun wrote: > Signed-off-by: Veluri Mithun > --- > d

Re: [Mesa-dev] [PATCH EGL/MESA] EGL/mesa: Initial writeup for MESA_query_renderer

2018-11-07 Thread Veluri Mithun
Hi all, Thanks Adam for your interest in this. > +New Tokens > > + > > +Accepted as an in EGLQueryRendererIntegerMESA and > > +EGLQueryCurrentRendererIntegerMESA: > > + > > +EGL_RENDERER_VENDOR_ID_MESA 0x > > +EGL_RENDERER_DEVICE_ID_MESA

[Mesa-dev] [PATCH] EGL/mesa: Initial write up for MESA_query_renderer

2018-11-07 Thread Veluri Mithun
00..4711e3dadb --- /dev/null +++ b/docs/specs/EGL_MESA_query_renderer.txt @@ -0,0 +1,186 @@ +Name + +MESA_query_renderer + +Name Strings + +EGL_MESA_query_renderer + +Contact + +Rob Clark +Nicolai H??hnle + +Contributors + +Veluri Mithun + +Status + +XXX

[Mesa-dev] [PATCH EGL/MESA] EGL/mesa: Initial write up for EGL_MESA_query_driver

2018-11-05 Thread Veluri Mithun
Signed-off-by: Veluri Mithun --- docs/specs/EGL_MESA_query_driver.txt | 53 1 file changed, 53 insertions(+) create mode 100644 docs/specs/EGL_MESA_query_driver.txt diff --git a/docs/specs/EGL_MESA_query_driver.txt b/docs/specs/EGL_MESA_query_driver.txt new file

Re: [Mesa-dev] [PATCH] EGL/mesa: Initial writeup for MESA_query_renderer

2018-11-04 Thread Veluri Mithun
Hi Romanick and Nicolai, Sry for the late, I had internal exams last month. the EGL version of the extension to the new document. The EGL enums > will probably be different, so maybe replace the enum values with 0x > for now. > What are these tokens(enum values) for? and how should one

[Mesa-dev] [PATCH EGL/MESA] EGL/mesa: Initial writeup for MESA_query_renderer

2018-11-04 Thread Veluri Mithun
Signed-off-by: Veluri Mithun --- docs/specs/EGL_MESA_query_renderer.txt | 241 + 1 file changed, 241 insertions(+) create mode 100644 docs/specs/EGL_MESA_query_renderer.txt diff --git a/docs/specs/EGL_MESA_query_renderer.txt b/docs/specs/EGL_MESA_query_renderer.txt new

Re: [Mesa-dev] EGL_MESA_query_renderer

2018-10-07 Thread Veluri Mithun
Hi Nicolai, All these days I worked on packaging since I didn't find much time last month in my new academic schedule, I finished it if you wish you may download it here(https://flathub.org/apps/details/br.com.jeanhertel.adriconf). Currently, it can configure drivers in X11 server. I started to

Re: [Mesa-dev] adriconf - Packaging

2018-09-06 Thread Veluri Mithun
Hi all, > > About sandbox permissions > > > What should we use for these --talk-name=, --system-talk-name, > --filesystem= finish options? > Do we need to use these??? >

[Mesa-dev] [PATCH] EGL/mesa: Initial writeup for MESA_query_renderer

2018-08-27 Thread Veluri Mithun
00..0fa9b33d00 --- /dev/null +++ b/docs/specs/EGL_MESA_query_renderer.txt @@ -0,0 +1,58 @@ +Name + +MESA_query_renderer + +Name Strings + +EGL_MESA_query_renderer + +Contact + +Rob Clark +Nicolai Hähnle + +Contibutors + +Veluri Mithun + +Status + +XXX - Not complete

Re: [Mesa-dev] EGL_MESA_query_renderer

2018-08-21 Thread Veluri Mithun
Hi all, On Tue, Aug 21, 2018 at 2:49 PM Emil Velikov wrote: > HI all, > > On 20 August 2018 at 20:01, Rob Clark wrote: > > +Emil since he had some interest in this extension too > > > > > Bth since I did not hear anything last week, so I sat down and wrote > the spec, implementation and tests

[Mesa-dev] New EGL extension in mesa and 'adriconf' packaging - EVoC'18

2018-07-04 Thread Veluri Mithun
Dear developers, I'm an undergraduate student in India. I've great enthusiasm to contribute to mesa and I've already done a few contributions to adriconf . Currently, adriconf isn't able to

[Mesa-dev] Getting started on DriConf replacement - EVoC 2018

2018-06-05 Thread Veluri Mithun
Dear developers, I'm of the undergraduate students at India having experience in C++, Java, Python programming languages. Being an Electronics student I've fair enough knowledge in architectures of few Microcontrollers and Embedded C, Verilog & VHDL. I'm very enthusiastic to take part in this