Re: [Mesa-dev] [PATCH] egl/android: config id increase one by one

2017-06-20 Thread Liu, Zhiquan
> -Original Message- > From: Emil Velikov [mailto:emil.l.veli...@gmail.com] > Sent: Thursday, June 15, 2017 9:59 PM > To: Liu, Zhiquan > Cc: ML mesa-dev ; Long, Zhifang > ; Rob Herring ; Tomasz Figa > > Subject: Re: [PATCH] egl/android: config id increase one by one > > On 12 January 2

Re: [Mesa-dev] [PATCH] egl/android: config id increase one by one

2017-06-15 Thread Emil Velikov
On 12 January 2017 at 15:31, Emil Velikov wrote: > On 12 January 2017 at 07:38, Liu Zhiquan wrote: >> when dri2_add_config, driver_configs may add to exist dri2_conf, >> the config id should not increase in this case. >> In the code, when ConfigID equal to count+1, it's mean a new config, >> conf

Re: [Mesa-dev] [PATCH] egl/android: config id increase one by one

2017-01-12 Thread Emil Velikov
On 12 January 2017 at 07:38, Liu Zhiquan wrote: > when dri2_add_config, driver_configs may add to exist dri2_conf, > the config id should not increase in this case. > In the code, when ConfigID equal to count+1, it's mean a new config, > config_count will increase. otherwise it's a exist config. >

[Mesa-dev] [PATCH] egl/android: config id increase one by one

2017-01-11 Thread Liu Zhiquan
when dri2_add_config, driver_configs may add to exist dri2_conf, the config id should not increase in this case. In the code, when ConfigID equal to count+1, it's mean a new config, config_count will increase. otherwise it's a exist config. Signed-off-by: Liu Zhiquan Signed-off-by: Long, Zhifang