Re: [Mesa-dev] [Intel-gfx] [PATCH 1/2] drm/i915/kbl: Remove unused Kabylake pci ids

2017-09-12 Thread Paulo Zanoni
Em Seg, 2017-09-11 às 10:10 -0700, Rodrigo Vivi escreveu: > On Mon, Sep 11, 2017 at 04:11:33PM +, Anuj Phogat wrote: > > See Mesa commits: ebc5ccf and b2dae9f > > I believe we need to be in sync between multiple gfx stack > components, > but I  don't believe we should remove ids. > > In the

Re: [Mesa-dev] [PATCH 00/27] Renderbuffer Decompression (and GBM modifiers)

2016-12-06 Thread Paulo Zanoni
a/drivers/dri/i965/intel_fbo.c| 17 +- > src/mesa/drivers/dri/i965/intel_image.h | 5 + > src/mesa/drivers/dri/i965/intel_mipmap_tree.c| 139 +++ > src/mesa/drivers/dri/i965/intel_mipmap_tree.h| 29 +++- > src/mesa/drivers/dri/i965/intel_scr

Re: [Mesa-dev] [PATCH mesa] i965: add more Haswell PCI IDs

2012-08-07 Thread Paulo Zanoni
2012/8/6 Kenneth Graunke kenn...@whitecape.org: On 08/06/2012 02:50 PM, Paulo Zanoni wrote: From: Paulo Zanoni paulo.r.zan...@intel.com Signed-off-by: Paulo Zanoni paulo.r.zan...@intel.com Reviewed-by: Kenneth Graunke kenn...@whitecape.org Do you have push access? If not, I can commit

[Mesa-dev] [PATCH mesa] i965: add more Haswell PCI IDs

2012-08-06 Thread Paulo Zanoni
From: Paulo Zanoni paulo.r.zan...@intel.com Signed-off-by: Paulo Zanoni paulo.r.zan...@intel.com --- include/pci_ids/i965_pci_ids.h | 33 ++- src/mesa/drivers/dri/intel/intel_chipset.h | 67 -- src/mesa/drivers/dri/intel/intel_context.c | 35

Re: [Mesa-dev] [RFC mesa-demos] Add --with-system-data-files configure option

2011-01-31 Thread Paulo Zanoni
2011/1/29 Henri Verbeet hverb...@gmail.com: If you pass -M to format-patch, it becomes a lot smaller. Thanks for the tip. For some reason I had to use -M -C --find-copies-harder. Attached is the same patch, but with these options. -- Paulo Zanoni From df235322ecbe969ce70dcf516111686ff1d59ee0

[Mesa-dev] [RFC mesa-demos] Add --with-system-data-files configure option

2011-01-28 Thread Paulo Zanoni
images/ to data/, the patch file is 3.9MB long, so you can grab it here: http://www.inf.ufpr.br/paulo/0002-Add-with-system-data-files-option.patch Any comments, improvements or objections? Cheers, Paulo -- Paulo Zanoni ___ mesa-dev mailing list mesa-dev

[Mesa-dev] [PATCH mesa-demos] cmake: fix egl/opengl compilation (needs -lm)

2011-01-28 Thread Paulo Zanoni
Signed-off-by: Paulo Zanoni pzan...@mandriva.com --- My cmake-fu is not good. Maybe there are better ways to fix this. Suggestions are always welcome =D src/egl/opengl/CMakeLists.txt |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/egl/opengl/CMakeLists.txt b/src

Re: [Mesa-dev] [PATCH] dri_util: fail driCreateNewScreen if InitScreen is NULL

2011-01-13 Thread Paulo Zanoni
I forgot to mention: this will give us a working X server with _software_ rendering, instead of a segfaulting X. 2011/1/13 Paulo Zanoni pzan...@mandriva.com: Without this, X doesn't start with UMS on r300g. Signed-off-by: Paulo Zanoni pzan...@mandriva.com --- Sending patch as discussed

[Mesa-dev] [PATCH mesa-demos 1/6] es1_info: convert indentString into a literal string

2011-01-06 Thread Paulo Zanoni
hints to improve performance. Signed-off-by: Paulo Zanoni pzan...@mandriva.com --- By the way, combining this patch with a printf(%s, indentString) would make the code even safer. The last patch of this series does this change, so you can choose to apply it or not. Using printf(string

[Mesa-dev] [PATCH mesa-demos 2/6] Add missing binaries to .gitignore

2011-01-06 Thread Paulo Zanoni
Signed-off-by: Paulo Zanoni pzan...@mandriva.com --- src/demos/.gitignore |1 + src/egl/opengles1/.gitignore |1 + src/glsl/.gitignore |1 + src/gs/.gitignore|1 + src/tests/.gitignore |1 + src/trivial/.gitignore |4 6 files

[Mesa-dev] [PATCH mesa-demos 3/6] opengles2/tri.c: remove trailing white spaces

2011-01-06 Thread Paulo Zanoni
So git won't complain when you apply the next patch. Also, code looks prettier this way. Signed-off-by: Paulo Zanoni pzan...@mandriva.com --- src/egl/opengles2/tri.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/egl/opengles2/tri.c b/src/egl/opengles2/tri.c

[Mesa-dev] [PATCH mesa-demos 6/6] es1_info: change printf(indentString) to printf(%s, indentString)

2011-01-06 Thread Paulo Zanoni
IMHO, code looks safer this way. Signed-off-by: Paulo Zanoni pzan...@mandriva.com --- Please read comments from patch 0001. src/egl/opengles1/es1_info.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/egl/opengles1/es1_info.c b/src/egl/opengles1/es1_info.c index