Re: [Mesa-dev] [v2, 2/2] state_tracker: Handle texture view min level in st_generate_mipmap()

2019-11-04 Thread Marek Olšák
I've pushed this patch. Thanks! Marek On Mon, Nov 4, 2019 at 7:31 AM Paul Gofman wrote: > Signed-off-by: Paul Gofman > --- > Corresponding piglit test patch: > https://patchwork.freedesktop.org/patch/338798/ > > src/mesa/state_tracker/st_gen_mipmap.c | 8 +++- > 1 file changed, 7 inse

Re: [Mesa-dev] [PATCH] ac: add missing Arcturus to the info of pc lines

2019-11-04 Thread Marek Olšák
Actually, pc_lines should be 0, so a case with only a break statement should be used. Marek On Mon, Nov 4, 2019 at 1:00 PM Marek Olšák wrote: > Reviewed-by: Marek Olšák > > Marek > > On Mon, Nov 4, 2019 at 11:30 AM Liu, Leo wrote: > >> Signed-off-by: Leo Liu >> Cc: Marek Olšák >> --- >> sr

Re: [Mesa-dev] [PATCH] ac: add missing Arcturus to the info of pc lines

2019-11-04 Thread Marek Olšák
Reviewed-by: Marek Olšák Marek On Mon, Nov 4, 2019 at 11:30 AM Liu, Leo wrote: > Signed-off-by: Leo Liu > Cc: Marek Olšák > --- > src/amd/common/ac_gpu_info.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/src/amd/common/ac_gpu_info.c b/src/amd/common/ac_gpu_info.c > index 9caa51c

[Mesa-dev] FOSDEM Graphics Devroom: call for speakers.

2019-11-04 Thread Luc Verhaegen
Hi, At FOSDEM on saturday the 1st of february 2020, there will be another graphics DevRoom. URL: https://fosdem.org/2020/ The focus of this DevRoom is: * Graphics drivers: from display to media to 3d drivers, both in bootloaders, kernel or userspace. Be it part of DRM, KMS, V4L, (direct)FB, Xo

[Mesa-dev] [PATCH] ac: add missing Arcturus to the info of pc lines

2019-11-04 Thread Liu, Leo
Signed-off-by: Leo Liu Cc: Marek Olšák --- src/amd/common/ac_gpu_info.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/amd/common/ac_gpu_info.c b/src/amd/common/ac_gpu_info.c index 9caa51cb8b9..0061d2deb01 100644 --- a/src/amd/common/ac_gpu_info.c +++ b/src/amd/common/ac_gpu_info.c @@ -

[Mesa-dev] [v2, 2/2] state_tracker: Handle texture view min level in st_generate_mipmap()

2019-11-04 Thread Paul Gofman
Signed-off-by: Paul Gofman --- Corresponding piglit test patch: https://patchwork.freedesktop.org/patch/338798/ src/mesa/state_tracker/st_gen_mipmap.c | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/mesa/state_tracker/st_gen_mipmap.c b/src/mesa/state_tracker/

[Mesa-dev] [v2, 1/2] i965: Handle texture view min level in brw_generate_mipmap()

2019-11-04 Thread Paul Gofman
Currently minlevel set with glTextureView() is ignored for mipmap generation and original texture's first layer is used as the source layer in glGenerateMipmap(). Signed-off-by: Paul Gofman --- Corresponding piglit test patch: https://patchwork.freedesktop.org/patch/338798/ src/mesa/driver