On Mon, Apr 27, 2015 at 11:12 AM, Connor Abbott wrote:
> On Mon, Apr 27, 2015 at 1:36 PM, Eric Anholt wrote:
>> Jason Ekstrand writes:
>>
>>> This commit adds a C-based linked list implementation for NIR. Unlike
>>> exec_list in glsl/list.h, there is no C++ API. Also, this list is based on
>>>
On Mon, Apr 27, 2015 at 1:36 PM, Eric Anholt wrote:
> Jason Ekstrand writes:
>
>> This commit adds a C-based linked list implementation for NIR. Unlike
>> exec_list in glsl/list.h, there is no C++ API. Also, this list is based on
>> wl_list (from the Wayland project) which is, in turn, based on
Jason Ekstrand writes:
> This commit adds a C-based linked list implementation for NIR. Unlike
> exec_list in glsl/list.h, there is no C++ API. Also, this list is based on
> wl_list (from the Wayland project) which is, in turn, based on the kernel
> list. As such, it should be fairly familiar
On Apr 24, 2015 4:46 PM, "Rob Clark" wrote:
>
> On Fri, Apr 24, 2015 at 7:32 PM, Jason Ekstrand
wrote:
> > This commit adds a C-based linked list implementation for NIR. Unlike
> > exec_list in glsl/list.h, there is no C++ API. Also, this list is
based on
> > wl_list (from the Wayland project)
On Fri, Apr 24, 2015 at 7:32 PM, Jason Ekstrand wrote:
> This commit adds a C-based linked list implementation for NIR. Unlike
> exec_list in glsl/list.h, there is no C++ API. Also, this list is based on
> wl_list (from the Wayland project) which is, in turn, based on the kernel
> list. As such
This commit adds a C-based linked list implementation for NIR. Unlike
exec_list in glsl/list.h, there is no C++ API. Also, this list is based on
wl_list (from the Wayland project) which is, in turn, based on the kernel
list. As such, it should be fairly familiar to people who have done
anything