#480 closed defect (fixed)
strange warning message on windows using opengl on nvidia GTX 670
Reported by: | aradtech | Owned by: | aradtech |
---|---|---|---|
Priority: | minor | Milestone: | 0.11 |
Component: | client | Version: | trunk |
Keywords: | Cc: |
Description (last modified by )
Windows 7 64 Nvidia GTX 670 Latest drivers
2013-12-19 17:48:17,118 src 8246 type 8251 id 20084 severity 9148 length 119 message \ Texture state usage warning: Waste of memory: Texture 0 has mipmaps, while its min filter is inconsistent with mipmaps. 2013-12-19 17:48:17,132 src 8246 type 8251 id 20084 severity 9148 length 119 message \ Texture state usage warning: Waste of memory: Texture 0 has mipmaps, while its min filter is inconsistent with mipmaps.
is repeated over and over in console window.
Attachments (3)
Change History (15)
Changed 8 years ago by
Attachment: | xpra-error.txt added |
---|
comment:1 Changed 8 years ago by
Description: | modified (diff) |
---|---|
Owner: | changed from Antoine Martin to Antoine Martin |
Status: | new → assigned |
Changed 8 years ago by
Attachment: | nvidia-dumbmipmapwarning.patch added |
---|
try to avoid the mipmap warning by explicitly telling nvidia we don't use mipmaps
comment:2 Changed 8 years ago by
Owner: | changed from Antoine Martin to aradtech |
---|---|
Status: | assigned → new |
Does the attachment/ticket/480/nvidia-dumbmipmapwarning.patch help?
With r5010 and later, does this make the warning disappear? (patch not needed then)
set XPRA_OPENGL_DEBUG=0 xpra_cmd attach ...
comment:5 Changed 8 years ago by
Damn, all this unnecessary logging will slow us down and may cause/hide other problems.
Please try the updated patch. If this still does not solve the problem, please attach the full client log output both with XPRA_OPENGL_DEBUG=0
and with XPRA_OPENGL_DEBUG=1
.
Changed 8 years ago by
Attachment: | nvidia-dumbmipmapwarning-v2.patch added |
---|
updated patch ensuring we use the same texture identifier
comment:7 Changed 8 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
Thanks! Merged in r5158, will backport.
comment:8 Changed 8 years ago by
Resolution: | fixed |
---|---|
Status: | closed → reopened |
Grrr. Causes GL errors on Fedora 20 in gl_window_backing.py
at line 256: invalid value
Possibly because the GL driver doesn't like the first parameter: GL_TEXTURE_RECTANGLE_ARB
? The spec doesn't list it as being a valid argument... Just because it works on win32 doesn't mean it's right!
comment:9 Changed 8 years ago by
Status: | reopened → new |
---|
comment:10 Changed 8 years ago by
Version 5178 Tested on Windows with opengl , no messages showing and all seems to be working well.
comment:12 Changed 16 months ago by
this ticket has been moved to: https://github.com/Xpra-org/xpra/issues/480
According to this: https://qt.gitorious.org/qt/qtdeclarative/commit/4fa67b9ef3201214db0b7e6d61288faa33d6ea8d, it is a
bogus warning message flood on nVidia driver
with the KHR_debug extension active
-nVidia seem unwilling to fix it in the driver
.We can probably apply the same fix here.