Re: [Mesa-dev] [PATCH] mesa: fix display list corner case assertion

2019-02-25 Thread Marek Olšák
Reviewed-by: Marek Olšák Marek On Mon, Feb 25, 2019 at 5:03 PM Brian Paul wrote: > This fixes a failed assertion in glDeleteLists() for the following > case: > > list = glGenLists(1); > glDeleteLists(list, 1); > > when those are the first display list commands issued by the > application. > >

[Mesa-dev] [PATCH] mesa: fix display list corner case assertion

2019-02-25 Thread Brian Paul
This fixes a failed assertion in glDeleteLists() for the following case: list = glGenLists(1); glDeleteLists(list, 1); when those are the first display list commands issued by the application. When we generate display lists, we plug in empty lists created with the make_list() helper. This