similar to: [Bug 19860] New: xv texture adaptor kills X

Displaying 20 results from an estimated 200 matches similar to: "[Bug 19860] New: xv texture adaptor kills X"

2010 Jul 29
1
[PATCH] Reflow logic to make it easier to follow
The control flow was: if (!y) { ppix = ... } if (y) { ... } else if (x) { use ppix for something } else { use ppix for something } Merge the if(!y) block with the two else branches. This avoids a false-positive in the clang static analyzer, it can't know that !y and x are mutually exclusive. The result looks something like this: if (y) { ... } else { ppix = ... if (x) {
2007 May 30
0
[PATCH] added comments
- added lots of comments, discussed comments with ahuillet and refined comments - replaced two constants with MACROs - no changes to actual code diff --git a/src/nv_video.c b/src/nv_video.c index cf4f88d..d9ee700 100644 --- a/src/nv_video.c +++ b/src/nv_video.c @@ -25,6 +25,15 @@ #include "nv_include.h" #include "nv_dma.h" +/* +2046 is the maximum image size in one
2009 Jan 16
18
[Bug 19620] New: At first start of X, secondary display doesn' t come up properly.
http://bugs.freedesktop.org/show_bug.cgi?id=19620 Summary: At first start of X, secondary display doesn't come up properly. Product: xorg Version: git Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau
2007 Aug 25
10
[Bug 12158] New: mouse cursor disappears
http://bugs.freedesktop.org/show_bug.cgi?id=12158 Summary: mouse cursor disappears Product: xorg Version: 7.2 Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo: nouveau at lists.freedesktop.org ReportedBy: mjulien.m at
2008 Feb 03
9
[Bug 14345] New: Image with width greater than 8176 pixel make firefox crash with X error
http://bugs.freedesktop.org/show_bug.cgi?id=14345 Summary: Image with width greater than 8176 pixel make firefox crash with X error Product: xorg Version: 7.2 Platform: Other OS/Version: All Status: NEW Severity: normal Priority: medium Component: Driver/nouveau AssignedTo:
2008 Jun 05
4
[Bug 16239] New: Loading flash from CHU Amiens make swfdec crash
http://bugs.freedesktop.org/show_bug.cgi?id=16239 Summary: Loading flash from CHU Amiens make swfdec crash Product: swfdec Version: git Platform: x86-64 (AMD64) URL: http://www.chu-amiens.fr/flash_content/index_flash.html OS/Version: Linux (All) Status: NEW Severity: critical Priority: medium
2010 Feb 09
1
texture dimension limits in ddx
in nv10_exa.c : check_texture does : if (w > 2046 || h > 2046) NOUVEAU_FALLBACK("picture too large, %dx%d\n", w, h); check_render_target does : if (w > 4096 || h > 4096) return FALSE; So we have different size limits for the source and the destination ? Another thing is that nv20 uses nv10_exa.c code, and the limit in
2008 Aug 30
1
[Bug 17371] New: Xv on NV18: HD video flickers with Adaptor #0, going back and forth
http://bugs.freedesktop.org/show_bug.cgi?id=17371 Summary: Xv on NV18: HD video flickers with Adaptor #0, going back and forth Product: xorg Version: unspecified Platform: x86-64 (AMD64) OS/Version: Linux (All) Status: NEW Severity: normal Priority: medium Component: Driver/nouveau
2018 Feb 04
0
[PATCH 2/2] nv50/xv: add support for depth 30 xv output
Ostensibly it should probably be looking at the pixmap format. However it's always the window pixmap, so we can assume it's what we expect. Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu> --- src/nouveau_xv.c | 11 +++++++++-- src/nv50_xv.c | 3 ++- src/nvc0_xv.c | 3 ++- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/src/nouveau_xv.c
2006 Jan 22
0
MySQL Adaptor on WinXP Dual CPU machine broken?
When I run using webrick on a dual WinXP SP2 machine it crashes intmittently at random locations. If the page has no MySQL lookups in it it will go and go forever. The moment I put one MyModel.find(:first) into the controller. Webrick starts crashing again. Crash as in illegal access into low addresses of memory. I have tried installing MySQL 4.1 and 5 GA as well as uninstalling and
2012 Mar 23
1
ffmpeg adaptor for ogg123
Hi all, I'm not sure if this is interesting to you guys (I'm also not 100% convinced this is the correct list) but I hacked up an adaptor for ogg123 to allow it to use ffmpeg as a decoder. It currently only recognises WMA files (I wanted to be able to play my wife's music from my Linux music server) but it would be trivial to extend to any other formats ffmpeg supports. Anyway, if
2008 May 13
0
SqlServer Activerecord Adaptor + VARCHAR(MAX) Woes
I seem to be running into various issues between SqlServer and Rails, and so far have been able to solve everything save for a particular quirk when running unit tests. When I run "rake test:units" on my app, it gets so far as to run db:schema:load. I''m dealing with a legacy database, so it''s loading all sorts of tables that I don''t care about, but
2013 May 27
2
Wireless USB adaptor recommendation
Hello, can someone recommend me wireless USB adaptor, which is supported in Centos 5.7? I found information about various chipsets, but nothing like "device X is OK". In most online stores the chipset is not announced. Thanks in advance.
2007 Apr 03
0
[Sybase Adaptor] find_by_xxx does not work correctly.
Hi Please advice me about the following problem. * Problem find_by_xxx method does not work correctly the following caes with sybase adaptor. * How to reproducible model :users t.column :code, :string <-- :string column t.column :last_name, :string t.column :first_name,:string >> User.find(1) => #<User:0x2abe232a68e8
2004 Dec 20
2
ATA Adaptor
Hi, I am new to asterisk and I am trying to get things set up so I can prove to the boss it works and get the budget to do a full implementation. Does anyone have an ata adaptor or an ip phone laying around they would be willing to sell me for around 30-50 dollars, I will need 2 of them. Thanks J.L you can email me directly if you wish jason@deafwv.org
2008 Apr 11
1
database adaptor password in production.log
So, as I''m working on migrating my app from Rails 1.2.1 to Rails 1.2.6, suddenly my database adaptor password is showing up in production log on startup. This could be because use " ActiveRecord::Base.allow_concurrency = true" (I know, nobody else does and you''ll tell me not to do it. But I''ve investigated it and it''s working for me, that''s
2013 Sep 11
2
SIM adaptor (huwewi or other)
Hello; I am looking for SIM adaptor to be connected with Asterisk to be able to send and receive calls from the mobile operator and if possible the same adapter to be used for SMS "sending and receiving". But what if anyone called this SIM card that is connected to this adapter and no one relied his call, how this miss call can reach for the use at the asterisk PBX? Regards Bilal
2007 Jan 16
3
odd error with sqlite3 adaptor
Any idea what would cause this? >> icps = Icp.find(:all) ActiveRecord::StatementInvalid: SQLite3::SQLException: unsupported file format: SELECT * FROM icps from c:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.14.4/lib/active_recor d/connection_adapters/abstract_adapter.rb:120:in `log'' from c:/ruby/lib/ruby/gems/1.8/gems/activerecord-1.14.4/lib/active_recor
2014 Oct 15
1
Loss of Ethernet adaptor
This is a return to an issue I first raised back in June. We had a similar occurrence in September while I was away and so I am revisiting the entire matter. Steve Clark on 6 Jun 16:02 2014 wrote: > Hi, > > We ran into this problem also - the interface would disappear. > There is newer e1000e driver that fixes it or you could > add pcie_aspm=off to your kernel command line. >
2007 May 20
1
centos 5 with mplayer and xv driver
Hi all I am trying to get mplayer working on centos 5. On centos 4.X I just did a ./configure and make and make install for mplayer.... Can use prepaged mplayer for other reasons. anyway, when I play a video I cannot get it to use the xv driver (acceleated video). What package might I be missing or not installed to get the xv driver ??? I am using the binary nvidia drivers (latest version).