Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
intel -- Xorg No devices detected [solved]
View unanswered posts
View posts from last 24 hours
View posts from last 7 days

 
Reply to topic    Gentoo Forums Forum Index Desktop Environments
View previous topic :: View next topic  
Author Message
qemist
n00b
n00b


Joined: 10 Apr 2010
Posts: 18

PostPosted: Tue Apr 12, 2011 11:24 am    Post subject: intel -- Xorg No devices detected [solved] Reply with quote

I recently made the mistake of emerge xorg after it had been working for about 18 months on my Dell Inspiron 1300. Now X wont start with my old xorg.conf. Without it X starts but with the wrong scroll resolution 1024x768. With the following xorg.conf it formerly started with the correct 1280x800 resolution.

Section "Device"
Identifier "i915"
Driver "intel"
Option "AccelMethod" "UXA"
VideoRam 261888
EndSection

lspci -k reveals
00:00.0 Host bridge: Intel Corporation Mobile 915GM/PM/GMS/910GML Express Processor to DRAM Controller (rev 03)
Subsystem: Dell Device 01c9
Kernel driver in use: agpgart-intel
Kernel modules: intel-agp
00:02.0 VGA compatible controller: Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller (rev 03)
Subsystem: Dell Device 01c9
00:02.1 Display controller: Intel Corporation Mobile 915GM/GMS/910GML Express Graphics Controller (rev 03)
Subsystem: Dell Device 01c9

What I want to know is what I can put in the xorg.conf to get the right resolution.


Last edited by qemist on Wed Apr 13, 2011 7:50 pm; edited 1 time in total
Back to top
View user's profile Send private message
Aquous
l33t
l33t


Joined: 08 Jan 2011
Posts: 700

PostPosted: Tue Apr 12, 2011 12:01 pm    Post subject: Reply with quote

Reinstall your xorg drivers - xf86-video-intel and also the drivers for your input device(s) - probably xf86-input-evdev.

Also post your xorg logs if that doesn't help.

Also also (:P) you shouldn't need an xorg.conf nowadays.
Back to top
View user's profile Send private message
Veldrin
Veteran
Veteran


Joined: 27 Jul 2004
Posts: 1945
Location: Zurich, Switzerland

PostPosted: Tue Apr 12, 2011 12:45 pm    Post subject: Reply with quote

up you did an xorg upgrade (you only said rebuilt), you have to rebuild all depending drivers.
emerge -a1 $(qlist -IC x11-drivers) does fix this. you may have to install gentoolkit.

V.
_________________
read the portage output!
If my answer is too concise, ask for an explanation.
Back to top
View user's profile Send private message
qemist
n00b
n00b


Joined: 10 Apr 2010
Posts: 18

PostPosted: Tue Apr 12, 2011 1:07 pm    Post subject: Reply with quote

Veldrin wrote:
up you did an xorg upgrade (you only said rebuilt), you have to rebuild all depending drivers.
emerge -a1 $(qlist -IC x11-drivers) does fix this. you may have to install gentoolkit.


Thank you Veldrin. I am surprised that any emerges would be required. Surely portage should have done any consequent emerges when I emerged xorg. Nonetheless I tried your suggestion. Emerge complains that there is no ebuild to satisfy xf86-video-vmware. This too puzzles me as I have never used vmware on this machine. Should I "emerge -C" it so that I can proceed?
Back to top
View user's profile Send private message
qemist
n00b
n00b


Joined: 10 Apr 2010
Posts: 18

PostPosted: Tue Apr 12, 2011 1:14 pm    Post subject: Reply with quote

Aquous wrote:
Reinstall your xorg drivers - xf86-video-intel and also the drivers for your input device(s) - probably xf86-input-evdev.


Thank you Aquous. I am emerging the two packages you mentioned as I type. Once again I am surprised that such a thing is necessary as I had only today performed an "emerge --deep --update world". My faith in portage's dependency checking is shaken.

I will let you know how this goes in the morrow.
Back to top
View user's profile Send private message
Aquous
l33t
l33t


Joined: 08 Jan 2011
Posts: 700

PostPosted: Tue Apr 12, 2011 2:49 pm    Post subject: Reply with quote

Post your /etc/make.conf. If it asks for vmware drivers you may've forgotten to set up INPUT_DEVICES and VIDEO_CARDS
Back to top
View user's profile Send private message
Jaglover
Watchman
Watchman


Joined: 29 May 2005
Posts: 8291
Location: Saint Amant, Acadiana

PostPosted: Tue Apr 12, 2011 2:57 pm    Post subject: Reply with quote

You will not have unnecessary drivers in your system if you have VIDEO_CARDS properly set in make.conf.

Read portage messages, this is what you saw (but didn't read) after upgrading/installing Xorg.

Quote:
You must rebuild all drivers if upgrading from <xorg-server-oldversion> because the ABI changed. If you cannot start X because of module version mismatch errors, this is your problem. You can generate a list of all installed packages in the x11-drivers category using this command: emerge portage-utils; qlist -I -C x11-drivers/.

_________________
My Gentoo installation notes.
Please learn how to denote units correctly!
Back to top
View user's profile Send private message
qemist
n00b
n00b


Joined: 10 Apr 2010
Posts: 18

PostPosted: Tue Apr 12, 2011 9:04 pm    Post subject: Reply with quote

Aquous wrote:
Post your /etc/make.conf. If it asks for vmware drivers you may've forgotten to set up INPUT_DEVICES and VIDEO_CARDS


I'm sorry to report that your previous advice made no difference to my screen resolution. As you can see below, both INPUT_DEVICES and VIDEO_CARDS are set in my make.conf.

# These settings were set by the catalyst build script that automatically
# built this stage.
# Please consult /usr/share/portage/config/make.conf.example for a more
# detailed example.
CFLAGS="-O2 -march=i686 -pipe"
CXXFLAGS="-O2 -march=i686 -pipe"
# WARNING: Changing your CHOST is not something that should be done lightly.
# Please consult http://www.gentoo.org/doc/en/change-chost.xml before changing.
CHOST="i686-pc-linux-gnu"

GENTOO_MIRRORS="http://ftp.swin.edu.au/gentoo http://gentoo.aditsu.net/ "
SYNC="rsync://rsync.namerica.gentoo.org/gentoo-portage"

USE="bash-completion cairo dri acpi pcmcia dbus gnome gtk hal java -arts -kde -qt3 -qt4 -ldap nsplugin symlink"
FEATURES=ccache
#FEATURES=-ccache
CCACHE_SIZE="2G"
VIDEO_CARDS="intel"
INPUT_DEVICES="evdev synaptics"
ACCEPT_LICENSE="Broadcom AdobeFlash-10.1 dlj-1.1"
Back to top
View user's profile Send private message
Jaglover
Watchman
Watchman


Joined: 29 May 2005
Posts: 8291
Location: Saint Amant, Acadiana

PostPosted: Tue Apr 12, 2011 11:05 pm    Post subject: Reply with quote

Too little information, but maybe you do not have KMS enabled and Xorg resorts to VESA driver. Although you should not have vesa driver in your system with your make.conf. See what driver is loading when running without xorg.conf.
_________________
My Gentoo installation notes.
Please learn how to denote units correctly!
Back to top
View user's profile Send private message
qemist
n00b
n00b


Joined: 10 Apr 2010
Posts: 18

PostPosted: Wed Apr 13, 2011 11:02 am    Post subject: Reply with quote

Jaglover wrote:
Too little information, but maybe you do not have KMS enabled and Xorg resorts to VESA driver. Although you should not have vesa driver in your system with your make.conf. See what driver is loading when running without xorg.conf.


Seems to load several but ends up using the VESA driver. Would appreciate it if you could clarify.

[ 135.350]
X.Org X Server 1.9.4
Release Date: 2011-02-04
[ 135.350] X Protocol Version 11, Revision 0
[ 135.350] Build Operating System: Linux 2.6.32-gentoo-r7 i686 Gentoo
[ 135.350] Current Operating System: Linux localhost 2.6.36-gentoo-r8 #1 SMP Mon Apr 11 07:31:09 EST 2011 i686
[ 135.351] Kernel command line: root=/dev/ram0 init=/linuxrc ramdisk=8192 real_root=/dev/hda3 3 lapic irqpoll acpi_irq_balance pci=assign-busses idebus=66
[ 135.351] Build Date: 11 April 2011 05:26:13AM
[ 135.351]
[ 135.351] Current version of pixman: 0.20.2
[ 135.351] Before reporting problems, check http://wiki.x.org
to make sure that you have the latest version.
[ 135.351] Markers: (--) probed, (**) from config file, (==) default setting,
(++) from command line, (!!) notice, (II) informational,
(WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[ 135.352] (==) Log file: "/var/log/Xorg.0.log", Time: Wed Apr 13 06:53:14 2011
[ 135.451] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[ 135.505] (==) No Layout section. Using the first Screen section.
[ 135.505] (==) No screen section available. Using defaults.
[ 135.505] (**) |-->Screen "Default Screen Section" (0)
[ 135.505] (**) | |-->Monitor "<default monitor>"
[ 135.505] (==) No monitor specified for screen "Default Screen Section".
Using a default monitor configuration.
[ 135.505] (==) Automatically adding devices
[ 135.505] (==) Automatically enabling devices
[ 135.663] (==) FontPath set to:
/usr/share/fonts/misc/,
/usr/share/fonts/TTF/,
/usr/share/fonts/OTF/,
/usr/share/fonts/Type1/,
/usr/share/fonts/100dpi/,
/usr/share/fonts/75dpi/
[ 135.663] (==) ModulePath set to "/usr/lib/xorg/modules"
[ 135.663] (II) The server relies on udev to provide the list of input devices.
If no devices become available, reconfigure udev or disable AutoAddDevices.
[ 135.663] (II) Loader magic: 0x81f2de0
[ 135.663] (II) Module ABI versions:
[ 135.663] X.Org ANSI C Emulation: 0.4
[ 135.663] X.Org Video Driver: 8.0
[ 135.663] X.Org XInput driver : 11.0
[ 135.663] X.Org Server Extension : 4.0
[ 135.664] (--) PCI:*(0:0:2:0) 8086:2592:1028:01c9 rev 3, Mem @ 0xdff00000/524288, 0xc0000000/268435456, 0xdfec0000/262144, I/O @ 0x0000eff8/8
[ 135.664] (--) PCI: (0:0:2:1) 8086:2792:1028:01c9 rev 3, Mem @ 0xdff80000/524288
[ 135.664] (II) Open ACPI successful (/var/run/acpid.socket)
[ 135.664] (II) LoadModule: "extmod"
[ 135.829] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[ 135.844] (II) Module extmod: vendor="X.Org Foundation"
[ 135.844] compiled for 1.9.4, module version = 1.0.0
[ 135.844] Module class: X.Org Server Extension
[ 135.844] ABI class: X.Org Server Extension, version 4.0
[ 135.844] (II) Loading extension MIT-SCREEN-SAVER
[ 135.844] (II) Loading extension XFree86-VidModeExtension
[ 135.844] (II) Loading extension XFree86-DGA
[ 135.845] (II) Loading extension DPMS
[ 135.845] (II) Loading extension XVideo
[ 135.845] (II) Loading extension XVideo-MotionCompensation
[ 135.845] (II) Loading extension X-Resource
[ 135.845] (II) LoadModule: "dbe"
[ 135.917] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[ 135.932] (II) Module dbe: vendor="X.Org Foundation"
[ 135.932] compiled for 1.9.4, module version = 1.0.0
[ 135.932] Module class: X.Org Server Extension
[ 135.932] ABI class: X.Org Server Extension, version 4.0
[ 135.932] (II) Loading extension DOUBLE-BUFFER
[ 135.932] (II) LoadModule: "glx"
[ 135.933] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so
[ 135.973] (II) Module glx: vendor="X.Org Foundation"
[ 135.973] compiled for 1.9.4, module version = 1.0.0
[ 135.973] ABI class: X.Org Server Extension, version 4.0
[ 135.991] (==) AIGLX enabled
[ 135.991] (II) Loading extension GLX
[ 135.991] (II) LoadModule: "record"
[ 135.992] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[ 135.993] (II) Module record: vendor="X.Org Foundation"
[ 135.993] compiled for 1.9.4, module version = 1.13.0
[ 135.993] Module class: X.Org Server Extension
[ 135.993] ABI class: X.Org Server Extension, version 4.0
[ 135.993] (II) Loading extension RECORD
[ 135.993] (II) LoadModule: "dri"
[ 135.993] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[ 136.051] (II) Module dri: vendor="X.Org Foundation"
[ 136.052] compiled for 1.9.4, module version = 1.0.0
[ 136.052] ABI class: X.Org Server Extension, version 4.0
[ 136.052] (II) Loading extension XFree86-DRI
[ 136.052] (II) LoadModule: "dri2"
[ 136.052] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[ 136.053] (II) Module dri2: vendor="X.Org Foundation"
[ 136.053] compiled for 1.9.4, module version = 1.2.0
[ 136.053] ABI class: X.Org Server Extension, version 4.0
[ 136.053] (II) Loading extension DRI2
[ 136.053] (==) Matched intel as autoconfigured driver 0
[ 136.053] (==) Matched vesa as autoconfigured driver 1
[ 136.053] (==) Matched fbdev as autoconfigured driver 2
[ 136.053] (==) Assigned the driver to the xf86ConfigLayout
[ 136.053] (II) LoadModule: "intel"
[ 136.053] (II) Loading /usr/lib/xorg/modules/drivers/intel_drv.so
[ 136.138] (II) Module intel: vendor="X.Org Foundation"
[ 136.138] compiled for 1.9.4, module version = 2.14.0
[ 136.138] Module class: X.Org Video Driver
[ 136.138] ABI class: X.Org Video Driver, version 8.0
[ 136.138] (II) LoadModule: "vesa"
[ 136.138] (II) Loading /usr/lib/xorg/modules/drivers/vesa_drv.so
[ 136.174] (II) Module vesa: vendor="X.Org Foundation"
[ 136.174] compiled for 1.9.4, module version = 2.3.0
[ 136.174] Module class: X.Org Video Driver
[ 136.174] ABI class: X.Org Video Driver, version 8.0
[ 136.174] (II) LoadModule: "fbdev"
[ 136.174] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so
[ 136.182] (II) Module fbdev: vendor="X.Org Foundation"
[ 136.182] compiled for 1.9.4, module version = 0.4.2
[ 136.182] ABI class: X.Org Video Driver, version 8.0
[ 136.182] (II) intel: Driver for Intel Integrated Graphics Chipsets: i810,
i810-dc100, i810e, i815, i830M, 845G, 854, 852GM/855GM, 865G, 915G,
E7221 (i915), 915GM, 945G, 945GM, 945GME, Pineview GM, Pineview G,
965G, G35, 965Q, 946GZ, 965GM, 965GME/GLE, G33, Q35, Q33, GM45,
4 Series, G45/G43, Q45/Q43, G41, B43, B43, Clarkdale, Arrandale,
Sandybridge, Sandybridge, Sandybridge, Sandybridge, Sandybridge,
Sandybridge, Sandybridge
[ 136.183] (II) VESA: driver for VESA chipsets: vesa
[ 136.183] (II) FBDEV: driver for framebuffer: fbdev
[ 136.183] (--) using VT number 7

[ 136.526] (WW) Falling back to old probe method for fbdev
[ 136.526] (II) Loading sub module "fbdevhw"
[ 136.526] (II) LoadModule: "fbdevhw"
[ 136.526] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so
[ 136.543] (II) Module fbdevhw: vendor="X.Org Foundation"
[ 136.543] compiled for 1.9.4, module version = 0.0.2
[ 136.543] ABI class: X.Org Video Driver, version 8.0
[ 136.543] (EE) open /dev/fb0: No such file or directory
[ 136.543] (II) Loading sub module "vbe"
[ 136.543] (II) LoadModule: "vbe"
[ 136.543] (II) Loading /usr/lib/xorg/modules/libvbe.so
[ 136.545] (II) Module vbe: vendor="X.Org Foundation"
[ 136.545] compiled for 1.9.4, module version = 1.1.0
[ 136.545] ABI class: X.Org Video Driver, version 8.0
[ 136.545] (II) Loading sub module "int10"
[ 136.545] (II) LoadModule: "int10"
[ 136.545] (II) Loading /usr/lib/xorg/modules/libint10.so
[ 136.569] (II) Module int10: vendor="X.Org Foundation"
[ 136.569] compiled for 1.9.4, module version = 1.0.0
[ 136.569] ABI class: X.Org Video Driver, version 8.0
[ 136.570] (II) VESA(0): initializing int10
[ 136.570] (II) VESA(0): Bad V_BIOS checksum
[ 136.570] (II) VESA(0): Primary V_BIOS segment is: 0xc000
[ 136.571] (II) VESA(0): VESA BIOS detected
[ 136.571] (II) VESA(0): VESA VBE Version 3.0
[ 136.571] (II) VESA(0): VESA VBE Total Mem: 7872 kB
[ 136.571] (II) VESA(0): VESA VBE OEM: Intel(r)915GM/910ML/915MS Graphics Chip Accelerated VGA BIOS
[ 136.571] (II) VESA(0): VESA VBE OEM Software Rev: 1.0
[ 136.571] (II) VESA(0): VESA VBE OEM Vendor: Intel Corporation
[ 136.571] (II) VESA(0): VESA VBE OEM Product: Intel(r)915GM/910ML/915MS Graphics Controller
[ 136.571] (II) VESA(0): VESA VBE OEM Product Rev: Hardware Version 0.0
[ 136.584] (II) VESA(0): Creating default Display subsection in Screen section
"Default Screen Section" for depth/fbbpp 24/32
[ 136.584] (==) VESA(0): Depth 24, (--) framebuffer bpp 32
[ 136.584] (==) VESA(0): RGB weight 888
[ 136.584] (==) VESA(0): Default visual is TrueColor
[ 136.584] (==) VESA(0): Using gamma correction (1.0, 1.0, 1.0)
[ 136.584] (II) Loading sub module "ddc"
[ 136.584] (II) LoadModule: "ddc"
[ 136.584] (II) Module "ddc" already built-in
[ 136.585] (II) VESA(0): VESA VBE DDC supported
[ 136.585] (II) VESA(0): VESA VBE DDC Level 2
[ 136.585] (II) VESA(0): VESA VBE DDC transfer in appr. 1 sec.
[ 136.597] (II) VESA(0): VESA VBE DDC read successfully
[ 136.597] (II) VESA(0): Manufacturer: QDS Model: 46 Serial#: 0
[ 136.597] (II) VESA(0): Year: 2005 Week: 0
[ 136.597] (II) VESA(0): EDID Version: 1.3
[ 136.597] (II) VESA(0): Digital Display Input
[ 136.597] (II) VESA(0): Max Image Size [cm]: horiz.: 33 vert.: 21
[ 136.597] (II) VESA(0): Gamma: 2.20
[ 136.597] (II) VESA(0): No DPMS capabilities specified
[ 136.597] (II) VESA(0): Supported color encodings: RGB 4:4:4 YCrCb 4:4:4
[ 136.598] (II) VESA(0): First detailed timing is preferred mode
[ 136.598] (II) VESA(0): redX: 0.579 redY: 0.340 greenX: 0.310 greenY: 0.550
[ 136.598] (II) VESA(0): blueX: 0.154 blueY: 0.153 whiteX: 0.314 whiteY: 0.329
[ 136.598] (II) VESA(0): Manufacturer's mask: 0
[ 136.598] (II) VESA(0): Supported detailed timing:
[ 136.598] (II) VESA(0): clock: 71.2 MHz Image Size: 331 x 207 mm
[ 136.598] (II) VESA(0): h_active: 1280 h_sync: 1328 h_sync_end 1360 h_blank_end 1440 h_border: 0
[ 136.598] (II) VESA(0): v_active: 800 v_sync: 802 v_sync_end 808 v_blanking: 823 v_border: 0
[ 136.598] (II) VESA(0): Unknown vendor-specific block f
[ 136.598] (II) VESA(0): GD738
[ 136.598] (II) VESA(0): ����h@
[ 136.598] (II) VESA(0): EDID (in hex):
[ 136.598] (II) VESA(0): 00ffffffffffff004493460000000000
[ 136.598] (II) VESA(0): 000f0103802115780a479994574f8c27
[ 136.598] (II) VESA(0): 27505400000001010101010101010101
[ 136.598] (II) VESA(0): 010101010101cb1b00a0502017303020
[ 136.598] (II) VESA(0): 26004bcf100000180000000f0008002a
[ 136.598] (II) VESA(0): 0001000400324a041400000000fe0047
[ 136.598] (II) VESA(0): 443733380000000000000000000000fe
[ 136.598] (II) VESA(0): 00e0d0c0b89868400001010a2020004a
[ 136.598] (II) VESA(0): EDID vendor "QDS", prod id 70
[ 136.598] (II) VESA(0): Printing DDC gathered Modelines:
[ 136.598] (II) VESA(0): Modeline "1280x800"x0.0 71.15 1280 1328 1360 1440 800 802 808 823 -hsync -vsync (49.4 kHz)
[ 136.598] (II) VESA(0): Searching for matching VESA mode(s):
[ 136.598] Mode: 160 (0x0)
[ 136.598] ModeAttributes: 0x0
[ 136.598] WinAAttributes: 0x0
[ 136.598] WinBAttributes: 0x0
[ 136.598] WinGranularity: 0
[ 136.598] WinSize: 0
[ 136.598] WinASegment: 0x0
[ 136.598] WinBSegment: 0x0
[ 136.598] WinFuncPtr: 0x0
[ 136.598] BytesPerScanline: 0
[ 136.598] XResolution: 0
[ 136.598] YResolution: 0
[ 136.598] XCharSize: 0
[ 136.598] YCharSize: 0
[ 136.598] NumberOfPlanes: 0
[ 136.598] BitsPerPixel: 0
[ 136.598] NumberOfBanks: 0
[ 136.598] MemoryModel: 0
[ 136.598] BankSize: 0
[ 136.598] NumberOfImages: 0
[ 136.598] RedMaskSize: 0
[ 136.598] RedFieldPosition: 0
[ 136.598] GreenMaskSize: 0
[ 136.598] GreenFieldPosition: 0
[ 136.598] BlueMaskSize: 0
[ 136.598] BlueFieldPosition: 0
[ 136.598] RsvdMaskSize: 0
[ 136.598] RsvdFieldPosition: 0
[ 136.598] DirectColorModeInfo: 0
[ 136.598] PhysBasePtr: 0x0
[ 136.599] LinBytesPerScanLine: 0
[ 136.599] BnkNumberOfImagePages: 0
[ 136.599] LinNumberOfImagePages: 0
[ 136.599] LinRedMaskSize: 0
[ 136.599] LinRedFieldPosition: 0
[ 136.599] LinGreenMaskSize: 0
[ 136.599] LinGreenFieldPosition: 0
[ 136.599] LinBlueMaskSize: 0
[ 136.599] LinBlueFieldPosition: 0
[ 136.599] LinRsvdMaskSize: 0
[ 136.599] LinRsvdFieldPosition: 0
[ 136.599] MaxPixelClock: 0
[ 136.599] Mode: 161 (0x0)
[ 136.599] ModeAttributes: 0x0
[ 136.599] WinAAttributes: 0x0
[ 136.599] WinBAttributes: 0x0
[ 136.599] WinGranularity: 0
[ 136.599] WinSize: 0
[ 136.599] WinASegment: 0x0
[ 136.599] WinBSegment: 0x0
[ 136.599] WinFuncPtr: 0x0
[ 136.599] BytesPerScanline: 0
[ 136.599] XResolution: 0
[ 136.599] YResolution: 0
[ 136.599] XCharSize: 0
[ 136.599] YCharSize: 0
[ 136.599] NumberOfPlanes: 0
[ 136.599] BitsPerPixel: 0
[ 136.599] NumberOfBanks: 0
[ 136.599] MemoryModel: 0
[ 136.599] BankSize: 0
[ 136.599] NumberOfImages: 0
[ 136.599] RedMaskSize: 0
[ 136.599] RedFieldPosition: 0
[ 136.599] GreenMaskSize: 0
[ 136.599] GreenFieldPosition: 0
[ 136.599] BlueMaskSize: 0
[ 136.599] BlueFieldPosition: 0
[ 136.599] RsvdMaskSize: 0
[ 136.599] RsvdFieldPosition: 0
[ 136.599] DirectColorModeInfo: 0
[ 136.599] PhysBasePtr: 0x0
[ 136.599] LinBytesPerScanLine: 0
[ 136.599] BnkNumberOfImagePages: 0
[ 136.599] LinNumberOfImagePages: 0
[ 136.599] LinRedMaskSize: 0
[ 136.599] LinRedFieldPosition: 0
[ 136.599] LinGreenMaskSize: 0
[ 136.599] LinGreenFieldPosition: 0
[ 136.599] LinBlueMaskSize: 0
[ 136.599] LinBlueFieldPosition: 0
[ 136.599] LinRsvdMaskSize: 0
[ 136.599] LinRsvdFieldPosition: 0
[ 136.599] MaxPixelClock: 0
[ 136.600] Mode: 162 (0x0)
[ 136.600] ModeAttributes: 0x0
[ 136.600] WinAAttributes: 0x0
[ 136.600] WinBAttributes: 0x0
[ 136.600] WinGranularity: 0
[ 136.600] WinSize: 0
[ 136.600] WinASegment: 0x0
[ 136.600] WinBSegment: 0x0
[ 136.600] WinFuncPtr: 0x0
[ 136.600] BytesPerScanline: 0
[ 136.600] XResolution: 0
[ 136.600] YResolution: 0
[ 136.600] XCharSize: 0
[ 136.600] YCharSize: 0
[ 136.600] NumberOfPlanes: 0
[ 136.600] BitsPerPixel: 0
[ 136.600] NumberOfBanks: 0
[ 136.600] MemoryModel: 0
[ 136.600] BankSize: 0
[ 136.600] NumberOfImages: 0
[ 136.600] RedMaskSize: 0
[ 136.600] RedFieldPosition: 0
[ 136.600] GreenMaskSize: 0
[ 136.600] GreenFieldPosition: 0
[ 136.600] BlueMaskSize: 0
[ 136.600] BlueFieldPosition: 0
[ 136.600] RsvdMaskSize: 0
[ 136.600] RsvdFieldPosition: 0
[ 136.600] DirectColorModeInfo: 0
[ 136.600] PhysBasePtr: 0x0
[ 136.600] LinBytesPerScanLine: 0
[ 136.600] BnkNumberOfImagePages: 0
[ 136.600] LinNumberOfImagePages: 0
[ 136.600] LinRedMaskSize: 0
[ 136.600] LinRedFieldPosition: 0
[ 136.600] LinGreenMaskSize: 0
[ 136.600] LinGreenFieldPosition: 0
[ 136.600] LinBlueMaskSize: 0
[ 136.600] LinBlueFieldPosition: 0
[ 136.600] LinRsvdMaskSize: 0
[ 136.600] LinRsvdFieldPosition: 0
[ 136.600] MaxPixelClock: 0
[ 136.600] Mode: 163 (0x0)
[ 136.600] ModeAttributes: 0x0
[ 136.600] WinAAttributes: 0x0
[ 136.600] WinBAttributes: 0x0
[ 136.600] WinGranularity: 0
[ 136.600] WinSize: 0
[ 136.600] WinASegment: 0x0
[ 136.600] WinBSegment: 0x0
[ 136.600] WinFuncPtr: 0x0
[ 136.600] BytesPerScanline: 0
[ 136.600] XResolution: 0
[ 136.600] YResolution: 0
[ 136.600] XCharSize: 0
[ 136.600] YCharSize: 0
[ 136.600] NumberOfPlanes: 0
[ 136.600] BitsPerPixel: 0
[ 136.600] NumberOfBanks: 0
[ 136.600] MemoryModel: 0
[ 136.600] BankSize: 0
[ 136.600] NumberOfImages: 0
[ 136.600] RedMaskSize: 0
[ 136.600] RedFieldPosition: 0
[ 136.601] GreenMaskSize: 0
[ 136.601] GreenFieldPosition: 0
[ 136.601] BlueMaskSize: 0
[ 136.601] BlueFieldPosition: 0
[ 136.601] RsvdMaskSize: 0
[ 136.601] RsvdFieldPosition: 0
[ 136.601] DirectColorModeInfo: 0
[ 136.601] PhysBasePtr: 0x0
[ 136.601] LinBytesPerScanLine: 0
[ 136.601] BnkNumberOfImagePages: 0
[ 136.601] LinNumberOfImagePages: 0
[ 136.601] LinRedMaskSize: 0
[ 136.601] LinRedFieldPosition: 0
[ 136.601] LinGreenMaskSize: 0
[ 136.601] LinGreenFieldPosition: 0
[ 136.601] LinBlueMaskSize: 0
[ 136.601] LinBlueFieldPosition: 0
[ 136.601] LinRsvdMaskSize: 0
[ 136.601] LinRsvdFieldPosition: 0
[ 136.601] MaxPixelClock: 0
[ 136.601] Mode: 164 (0x0)
[ 136.601] ModeAttributes: 0x0
[ 136.601] WinAAttributes: 0x0
[ 136.601] WinBAttributes: 0x0
[ 136.601] WinGranularity: 0
[ 136.601] WinSize: 0
[ 136.601] WinASegment: 0x0
[ 136.601] WinBSegment: 0x0
[ 136.601] WinFuncPtr: 0x0
[ 136.601] BytesPerScanline: 0
[ 136.601] XResolution: 0
[ 136.601] YResolution: 0
[ 136.601] XCharSize: 0
[ 136.601] YCharSize: 0
[ 136.601] NumberOfPlanes: 0
[ 136.601] BitsPerPixel: 0
[ 136.601] NumberOfBanks: 0
[ 136.601] MemoryModel: 0
[ 136.601] BankSize: 0
[ 136.601] NumberOfImages: 0
[ 136.601] RedMaskSize: 0
[ 136.601] RedFieldPosition: 0
[ 136.601] GreenMaskSize: 0
[ 136.601] GreenFieldPosition: 0
[ 136.601] BlueMaskSize: 0
[ 136.601] BlueFieldPosition: 0
[ 136.601] RsvdMaskSize: 0
[ 136.601] RsvdFieldPosition: 0
[ 136.601] DirectColorModeInfo: 0
[ 136.601] PhysBasePtr: 0x0
[ 136.601] LinBytesPerScanLine: 0
[ 136.601] BnkNumberOfImagePages: 0
[ 136.601] LinNumberOfImagePages: 0
[ 136.601] LinRedMaskSize: 0
[ 136.601] LinRedFieldPosition: 0
[ 136.601] LinGreenMaskSize: 0
[ 136.601] LinGreenFieldPosition: 0
[ 136.601] LinBlueMaskSize: 0
[ 136.601] LinBlueFieldPosition: 0
[ 136.601] LinRsvdMaskSize: 0
[ 136.601] LinRsvdFieldPosition: 0
[ 136.601] MaxPixelClock: 0
[ 136.602] Mode: 165 (0x0)
[ 136.602] ModeAttributes: 0x0
[ 136.602] WinAAttributes: 0x0
[ 136.602] WinBAttributes: 0x0
[ 136.602] WinGranularity: 0
[ 136.602] WinSize: 0
[ 136.602] WinASegment: 0x0
[ 136.602] WinBSegment: 0x0
[ 136.602] WinFuncPtr: 0x0
[ 136.602] BytesPerScanline: 0
[ 136.602] XResolution: 0
[ 136.602] YResolution: 0
[ 136.602] XCharSize: 0
[ 136.602] YCharSize: 0
[ 136.602] NumberOfPlanes: 0
[ 136.602] BitsPerPixel: 0
[ 136.602] NumberOfBanks: 0
[ 136.602] MemoryModel: 0
[ 136.602] BankSize: 0
[ 136.602] NumberOfImages: 0
[ 136.602] RedMaskSize: 0
[ 136.602] RedFieldPosition: 0
[ 136.602] GreenMaskSize: 0
[ 136.602] GreenFieldPosition: 0
[ 136.602] BlueMaskSize: 0
[ 136.602] BlueFieldPosition: 0
[ 136.602] RsvdMaskSize: 0
[ 136.602] RsvdFieldPosition: 0
[ 136.602] DirectColorModeInfo: 0
[ 136.602] PhysBasePtr: 0x0
[ 136.602] LinBytesPerScanLine: 0
[ 136.602] BnkNumberOfImagePages: 0
[ 136.602] LinNumberOfImagePages: 0
[ 136.602] LinRedMaskSize: 0
[ 136.602] LinRedFieldPosition: 0
[ 136.602] LinGreenMaskSize: 0
[ 136.602] LinGreenFieldPosition: 0
[ 136.602] LinBlueMaskSize: 0
[ 136.602] LinBlueFieldPosition: 0
[ 136.602] LinRsvdMaskSize: 0
[ 136.602] LinRsvdFieldPosition: 0
[ 136.602] MaxPixelClock: 0
[ 136.602] Mode: 166 (0x0)
[ 136.602] ModeAttributes: 0x0
[ 136.602] WinAAttributes: 0x0
[ 136.602] WinBAttributes: 0x0
[ 136.602] WinGranularity: 0
[ 136.602] WinSize: 0
[ 136.602] WinASegment: 0x0
[ 136.602] WinBSegment: 0x0
[ 136.602] WinFuncPtr: 0x0
[ 136.602] BytesPerScanline: 0
[ 136.602] XResolution: 0
[ 136.602] YResolution: 0
[ 136.602] XCharSize: 0
[ 136.602] YCharSize: 0
[ 136.602] NumberOfPlanes: 0
[ 136.602] BitsPerPixel: 0
[ 136.603] NumberOfBanks: 0
[ 136.603] MemoryModel: 0
[ 136.603] BankSize: 0
[ 136.603] NumberOfImages: 0
[ 136.603] RedMaskSize: 0
[ 136.603] RedFieldPosition: 0
[ 136.603] GreenMaskSize: 0
[ 136.603] GreenFieldPosition: 0
[ 136.603] BlueMaskSize: 0
[ 136.603] BlueFieldPosition: 0
[ 136.603] RsvdMaskSize: 0
[ 136.603] RsvdFieldPosition: 0
[ 136.603] DirectColorModeInfo: 0
[ 136.603] PhysBasePtr: 0x0
[ 136.603] LinBytesPerScanLine: 0
[ 136.603] BnkNumberOfImagePages: 0
[ 136.603] LinNumberOfImagePages: 0
[ 136.603] LinRedMaskSize: 0
[ 136.603] LinRedFieldPosition: 0
[ 136.603] LinGreenMaskSize: 0
[ 136.603] LinGreenFieldPosition: 0
[ 136.603] LinBlueMaskSize: 0
[ 136.603] LinBlueFieldPosition: 0
[ 136.603] LinRsvdMaskSize: 0
[ 136.603] LinRsvdFieldPosition: 0
[ 136.603] MaxPixelClock: 0
[ 136.603] Mode: 167 (0x0)
[ 136.603] ModeAttributes: 0x0
[ 136.603] WinAAttributes: 0x0
[ 136.603] WinBAttributes: 0x0
[ 136.603] WinGranularity: 0
[ 136.603] WinSize: 0
[ 136.603] WinASegment: 0x0
[ 136.603] WinBSegment: 0x0
[ 136.603] WinFuncPtr: 0x0
[ 136.603] BytesPerScanline: 0
[ 136.603] XResolution: 0
[ 136.603] YResolution: 0
[ 136.603] XCharSize: 0
[ 136.603] YCharSize: 0
[ 136.603] NumberOfPlanes: 0
[ 136.603] BitsPerPixel: 0
[ 136.603] NumberOfBanks: 0
[ 136.603] MemoryModel: 0
[ 136.603] BankSize: 0
[ 136.603] NumberOfImages: 0
[ 136.603] RedMaskSize: 0
[ 136.603] RedFieldPosition: 0
[ 136.603] GreenMaskSize: 0
[ 136.603] GreenFieldPosition: 0
[ 136.603] BlueMaskSize: 0
[ 136.603] BlueFieldPosition: 0
[ 136.603] RsvdMaskSize: 0
[ 136.603] RsvdFieldPosition: 0
[ 136.603] DirectColorModeInfo: 0
[ 136.603] PhysBasePtr: 0x0
[ 136.603] LinBytesPerScanLine: 0
[ 136.603] BnkNumberOfImagePages: 0
[ 136.603] LinNumberOfImagePages: 0
[ 136.603] LinRedMaskSize: 0
[ 136.603] LinRedFieldPosition: 0
[ 136.603] LinGreenMaskSize: 0
[ 136.603] LinGreenFieldPosition: 0
[ 136.603] LinBlueMaskSize: 0
[ 136.603] LinBlueFieldPosition: 0
[ 136.603] LinRsvdMaskSize: 0
[ 136.603] LinRsvdFieldPosition: 0
[ 136.603] MaxPixelClock: 0
[ 136.604] Mode: 168 (0x0)
[ 136.604] ModeAttributes: 0x0
[ 136.604] WinAAttributes: 0x0
[ 136.604] WinBAttributes: 0x0
[ 136.604] WinGranularity: 0
[ 136.604] WinSize: 0
[ 136.604] WinASegment: 0x0
[ 136.604] WinBSegment: 0x0
[ 136.604] WinFuncPtr: 0x0
[ 136.604] BytesPerScanline: 0
[ 136.604] XResolution: 0
[ 136.604] YResolution: 0
[ 136.604] XCharSize: 0
[ 136.604] YCharSize: 0
[ 136.604] NumberOfPlanes: 0
[ 136.604] BitsPerPixel: 0
[ 136.604] NumberOfBanks: 0
[ 136.604] MemoryModel: 0
[ 136.604] BankSize: 0
[ 136.604] NumberOfImages: 0
[ 136.604] RedMaskSize: 0
[ 136.604] RedFieldPosition: 0
[ 136.604] GreenMaskSize: 0
[ 136.604] GreenFieldPosition: 0
[ 136.604] BlueMaskSize: 0
[ 136.604] BlueFieldPosition: 0
[ 136.604] RsvdMaskSize: 0
[ 136.604] RsvdFieldPosition: 0
[ 136.604] DirectColorModeInfo: 0
[ 136.604] PhysBasePtr: 0x0
[ 136.604] LinBytesPerScanLine: 0
[ 136.604] BnkNumberOfImagePages: 0
[ 136.604] LinNumberOfImagePages: 0
[ 136.604] LinRedMaskSize: 0
[ 136.604] LinRedFieldPosition: 0
[ 136.604] LinGreenMaskSize: 0
[ 136.604] LinGreenFieldPosition: 0
[ 136.604] LinBlueMaskSize: 0
[ 136.604] LinBlueFieldPosition: 0
[ 136.604] LinRsvdMaskSize: 0
[ 136.604] LinRsvdFieldPosition: 0
[ 136.604] MaxPixelClock: 0
[ 136.604] Mode: 169 (0x0)
[ 136.604] ModeAttributes: 0x0
[ 136.604] WinAAttributes: 0x0
[ 136.604] WinBAttributes: 0x0
[ 136.604] WinGranularity: 0
[ 136.604] WinSize: 0
[ 136.604] WinASegment: 0x0
[ 136.604] WinBSegment: 0x0
[ 136.604] WinFuncPtr: 0x0
[ 136.605] BytesPerScanline: 0
[ 136.605] XResolution: 0
[ 136.605] YResolution: 0
[ 136.605] XCharSize: 0
[ 136.605] YCharSize: 0
[ 136.605] NumberOfPlanes: 0
[ 136.605] BitsPerPixel: 0
[ 136.605] NumberOfBanks: 0
[ 136.605] MemoryModel: 0
[ 136.605] BankSize: 0
[ 136.605] NumberOfImages: 0
[ 136.605] RedMaskSize: 0
[ 136.605] RedFieldPosition: 0
[ 136.605] GreenMaskSize: 0
[ 136.605] GreenFieldPosition: 0
[ 136.605] BlueMaskSize: 0
[ 136.605] BlueFieldPosition: 0
[ 136.605] RsvdMaskSize: 0
[ 136.605] RsvdFieldPosition: 0
[ 136.605] DirectColorModeInfo: 0
[ 136.605] PhysBasePtr: 0x0
[ 136.605] LinBytesPerScanLine: 0
[ 136.605] BnkNumberOfImagePages: 0
[ 136.605] LinNumberOfImagePages: 0
[ 136.605] LinRedMaskSize: 0
[ 136.605] LinRedFieldPosition: 0
[ 136.605] LinGreenMaskSize: 0
[ 136.605] LinGreenFieldPosition: 0
[ 136.605] LinBlueMaskSize: 0
[ 136.605] LinBlueFieldPosition: 0
[ 136.605] LinRsvdMaskSize: 0
[ 136.605] LinRsvdFieldPosition: 0
[ 136.605] MaxPixelClock: 0
[ 136.605] Mode: 16a (0x0)
[ 136.605] ModeAttributes: 0x0
[ 136.605] WinAAttributes: 0x0
[ 136.605] WinBAttributes: 0x0
[ 136.605] WinGranularity: 0
[ 136.605] WinSize: 0
[ 136.605] WinASegment: 0x0
[ 136.605] WinBSegment: 0x0
[ 136.605] WinFuncPtr: 0x0
[ 136.605] BytesPerScanline: 0
[ 136.605] XResolution: 0
[ 136.605] YResolution: 0
[ 136.605] XCharSize: 0
[ 136.605] YCharSize: 0
[ 136.605] NumberOfPlanes: 0
[ 136.605] BitsPerPixel: 0
[ 136.605] NumberOfBanks: 0
[ 136.605] MemoryModel: 0
[ 136.605] BankSize: 0
[ 136.605] NumberOfImages: 0
[ 136.605] RedMaskSize: 0
[ 136.605] RedFieldPosition: 0
[ 136.605] GreenMaskSize: 0
[ 136.605] GreenFieldPosition: 0
[ 136.605] BlueMaskSize: 0
[ 136.605] BlueFieldPosition: 0
[ 136.605] RsvdMaskSize: 0
[ 136.605] RsvdFieldPosition: 0
[ 136.605] DirectColorModeInfo: 0
[ 136.605] PhysBasePtr: 0x0
[ 136.605] LinBytesPerScanLine: 0
[ 136.605] BnkNumberOfImagePages: 0
[ 136.605] LinNumberOfImagePages: 0
[ 136.605] LinRedMaskSize: 0
[ 136.606] LinRedFieldPosition: 0
[ 136.606] LinGreenMaskSize: 0
[ 136.606] LinGreenFieldPosition: 0
[ 136.606] LinBlueMaskSize: 0
[ 136.606] LinBlueFieldPosition: 0
[ 136.606] LinRsvdMaskSize: 0
[ 136.606] LinRsvdFieldPosition: 0
[ 136.606] MaxPixelClock: 0
[ 136.606] Mode: 16b (0x0)
[ 136.606] ModeAttributes: 0x0
[ 136.606] WinAAttributes: 0x0
[ 136.606] WinBAttributes: 0x0
[ 136.606] WinGranularity: 0
[ 136.606] WinSize: 0
[ 136.606] WinASegment: 0x0
[ 136.606] WinBSegment: 0x0
[ 136.606] WinFuncPtr: 0x0
[ 136.606] BytesPerScanline: 0
[ 136.606] XResolution: 0
[ 136.606] YResolution: 0
[ 136.606] XCharSize: 0
[ 136.606] YCharSize: 0
[ 136.606] NumberOfPlanes: 0
[ 136.606] BitsPerPixel: 0
[ 136.606] NumberOfBanks: 0
[ 136.606] MemoryModel: 0
[ 136.606] BankSize: 0
[ 136.606] NumberOfImages: 0
[ 136.606] RedMaskSize: 0
[ 136.606] RedFieldPosition: 0
[ 136.606] GreenMaskSize: 0
[ 136.606] GreenFieldPosition: 0
[ 136.606] BlueMaskSize: 0
[ 136.606] BlueFieldPosition: 0
[ 136.606] RsvdMaskSize: 0
[ 136.606] RsvdFieldPosition: 0
[ 136.606] DirectColorModeInfo: 0
[ 136.606] PhysBasePtr: 0x0
[ 136.606] LinBytesPerScanLine: 0
[ 136.606] BnkNumberOfImagePages: 0
[ 136.606] LinNumberOfImagePages: 0
[ 136.606] LinRedMaskSize: 0
[ 136.606] LinRedFieldPosition: 0
[ 136.606] LinGreenMaskSize: 0
[ 136.606] LinGreenFieldPosition: 0
[ 136.606] LinBlueMaskSize: 0
[ 136.606] LinBlueFieldPosition: 0
[ 136.606] LinRsvdMaskSize: 0
[ 136.606] LinRsvdFieldPosition: 0
[ 136.606] MaxPixelClock: 0
[ 136.607] Mode: 16c (0x0)
[ 136.607] ModeAttributes: 0x0
[ 136.607] WinAAttributes: 0x0
[ 136.607] WinBAttributes: 0x0
[ 136.607] WinGranularity: 0
[ 136.607] WinSize: 0
[ 136.607] WinASegment: 0x0
[ 136.607] WinBSegment: 0x0
[ 136.607] WinFuncPtr: 0x0
[ 136.607] BytesPerScanline: 0
[ 136.607] XResolution: 0
[ 136.607] YResolution: 0
[ 136.607] XCharSize: 0
[ 136.607] YCharSize: 0
[ 136.607] NumberOfPlanes: 0
[ 136.607] BitsPerPixel: 0
[ 136.607] NumberOfBanks: 0
[ 136.607] MemoryModel: 0
[ 136.607] BankSize: 0
[ 136.607] NumberOfImages: 0
[ 136.607] RedMaskSize: 0
[ 136.607] RedFieldPosition: 0
[ 136.607] GreenMaskSize: 0
[ 136.607] GreenFieldPosition: 0
[ 136.607] BlueMaskSize: 0
[ 136.607] BlueFieldPosition: 0
[ 136.607] RsvdMaskSize: 0
[ 136.607] RsvdFieldPosition: 0
[ 136.607] DirectColorModeInfo: 0
[ 136.607] PhysBasePtr: 0x0
[ 136.607] LinBytesPerScanLine: 0
[ 136.607] BnkNumberOfImagePages: 0
[ 136.607] LinNumberOfImagePages: 0
[ 136.607] LinRedMaskSize: 0
[ 136.607] LinRedFieldPosition: 0
[ 136.607] LinGreenMaskSize: 0
[ 136.607] LinGreenFieldPosition: 0
[ 136.607] LinBlueMaskSize: 0
[ 136.607] LinBlueFieldPosition: 0
[ 136.607] LinRsvdMaskSize: 0
[ 136.607] LinRsvdFieldPosition: 0
[ 136.607] MaxPixelClock: 0
[ 136.607] Mode: 16d (0x0)
[ 136.607] ModeAttributes: 0x0
[ 136.607] WinAAttributes: 0x0
[ 136.607] WinBAttributes: 0x0
[ 136.607] WinGranularity: 0
[ 136.607] WinSize: 0
[ 136.607] WinASegment: 0x0
[ 136.607] WinBSegment: 0x0
[ 136.607] WinFuncPtr: 0x0
[ 136.607] BytesPerScanline: 0
[ 136.607] XResolution: 0
[ 136.607] YResolution: 0
[ 136.607] XCharSize: 0
[ 136.607] YCharSize: 0
[ 136.607] NumberOfPlanes: 0
[ 136.607] BitsPerPixel: 0
[ 136.607] NumberOfBanks: 0
[ 136.607] MemoryModel: 0
[ 136.607] BankSize: 0
[ 136.607] NumberOfImages: 0
[ 136.607] RedMaskSize: 0
[ 136.607] RedFieldPosition: 0
[ 136.607] GreenMaskSize: 0
[ 136.608] GreenFieldPosition: 0
[ 136.608] BlueMaskSize: 0
[ 136.608] BlueFieldPosition: 0
[ 136.608] RsvdMaskSize: 0
[ 136.608] RsvdFieldPosition: 0
[ 136.608] DirectColorModeInfo: 0
[ 136.608] PhysBasePtr: 0x0
[ 136.608] LinBytesPerScanLine: 0
[ 136.608] BnkNumberOfImagePages: 0
[ 136.608] LinNumberOfImagePages: 0
[ 136.608] LinRedMaskSize: 0
[ 136.608] LinRedFieldPosition: 0
[ 136.608] LinGreenMaskSize: 0
[ 136.608] LinGreenFieldPosition: 0
[ 136.608] LinBlueMaskSize: 0
[ 136.608] LinBlueFieldPosition: 0
[ 136.608] LinRsvdMaskSize: 0
[ 136.608] LinRsvdFieldPosition: 0
[ 136.608] MaxPixelClock: 0
[ 136.608] Mode: 16e (0x0)
[ 136.608] ModeAttributes: 0x0
[ 136.608] WinAAttributes: 0x0
[ 136.608] WinBAttributes: 0x0
[ 136.608] WinGranularity: 0
[ 136.608] WinSize: 0
[ 136.608] WinASegment: 0x0
[ 136.608] WinBSegment: 0x0
[ 136.608] WinFuncPtr: 0x0
[ 136.608] BytesPerScanline: 0
[ 136.608] XResolution: 0
[ 136.608] YResolution: 0
[ 136.608] XCharSize: 0
[ 136.608] YCharSize: 0
[ 136.608] NumberOfPlanes: 0
[ 136.608] BitsPerPixel: 0
[ 136.608] NumberOfBanks: 0
[ 136.608] MemoryModel: 0
[ 136.608] BankSize: 0
[ 136.608] NumberOfImages: 0
[ 136.608] RedMaskSize: 0
[ 136.608] RedFieldPosition: 0
[ 136.608] GreenMaskSize: 0
[ 136.608] GreenFieldPosition: 0
[ 136.608] BlueMaskSize: 0
[ 136.608] BlueFieldPosition: 0
[ 136.608] RsvdMaskSize: 0
[ 136.608] RsvdFieldPosition: 0
[ 136.608] DirectColorModeInfo: 0
[ 136.608] PhysBasePtr: 0x0
[ 136.608] LinBytesPerScanLine: 0
[ 136.608] BnkNumberOfImagePages: 0
[ 136.608] LinNumberOfImagePages: 0
[ 136.608] LinRedMaskSize: 0
[ 136.608] LinRedFieldPosition: 0
[ 136.608] LinGreenMaskSize: 0
[ 136.608] LinGreenFieldPosition: 0
[ 136.608] LinBlueMaskSize: 0
[ 136.608] LinBlueFieldPosition: 0
[ 136.608] LinRsvdMaskSize: 0
[ 136.608] LinRsvdFieldPosition: 0
[ 136.608] MaxPixelClock: 0
[ 136.609] Mode: 16f (0x0)
[ 136.609] ModeAttributes: 0x0
[ 136.609] WinAAttributes: 0x0
[ 136.609] WinBAttributes: 0x0
[ 136.609] WinGranularity: 0
[ 136.609] WinSize: 0
[ 136.609] WinASegment: 0x0
[ 136.609] WinBSegment: 0x0
[ 136.609] WinFuncPtr: 0x0
[ 136.609] BytesPerScanline: 0
[ 136.609] XResolution: 0
[ 136.609] YResolution: 0
[ 136.609] XCharSize: 0
[ 136.609] YCharSize: 0
[ 136.609] NumberOfPlanes: 0
[ 136.609] BitsPerPixel: 0
[ 136.609] NumberOfBanks: 0
[ 136.609] MemoryModel: 0
[ 136.609] BankSize: 0
[ 136.609] NumberOfImages: 0
[ 136.609] RedMaskSize: 0
[ 136.609] RedFieldPosition: 0
[ 136.609] GreenMaskSize: 0
[ 136.609] GreenFieldPosition: 0
[ 136.609] BlueMaskSize: 0
[ 136.609] BlueFieldPosition: 0
[ 136.609] RsvdMaskSize: 0
[ 136.609] RsvdFieldPosition: 0
[ 136.609] DirectColorModeInfo: 0
[ 136.609] PhysBasePtr: 0x0
[ 136.609] LinBytesPerScanLine: 0
[ 136.609] BnkNumberOfImagePages: 0
[ 136.609] LinNumberOfImagePages: 0
[ 136.609] LinRedMaskSize: 0
[ 136.609] LinRedFieldPosition: 0
[ 136.609] LinGreenMaskSize: 0
[ 136.609] LinGreenFieldPosition: 0
[ 136.609] LinBlueMaskSize: 0
[ 136.609] LinBlueFieldPosition: 0
[ 136.609] LinRsvdMaskSize: 0
[ 136.609] LinRsvdFieldPosition: 0
[ 136.609] MaxPixelClock: 0
[ 136.609] Mode: 170 (0x0)
[ 136.609] ModeAttributes: 0x0
[ 136.609] WinAAttributes: 0x0
[ 136.609] WinBAttributes: 0x0
[ 136.609] WinGranularity: 0
[ 136.609] WinSize: 0
[ 136.609] WinASegment: 0x0
[ 136.609] WinBSegment: 0x0
[ 136.609] WinFuncPtr: 0x0
[ 136.609] BytesPerScanline: 0
[ 136.610] XResolution: 0
[ 136.610] YResolution: 0
[ 136.610] XCharSize: 0
[ 136.610] YCharSize: 0
[ 136.610] NumberOfPlanes: 0
[ 136.610] BitsPerPixel: 0
[ 136.610] NumberOfBanks: 0
[ 136.610] MemoryModel: 0
[ 136.610] BankSize: 0
[ 136.610] NumberOfImages: 0
[ 136.610] RedMaskSize: 0
[ 136.610] RedFieldPosition: 0
[ 136.610] GreenMaskSize: 0
[ 136.610] GreenFieldPosition: 0
[ 136.610] BlueMaskSize: 0
[ 136.610] BlueFieldPosition: 0
[ 136.610] RsvdMaskSize: 0
[ 136.610] RsvdFieldPosition: 0
[ 136.610] DirectColorModeInfo: 0
[ 136.610] PhysBasePtr: 0x0
[ 136.610] LinBytesPerScanLine: 0
[ 136.610] BnkNumberOfImagePages: 0
[ 136.610] LinNumberOfImagePages: 0
[ 136.610] LinRedMaskSize: 0
[ 136.610] LinRedFieldPosition: 0
[ 136.610] LinGreenMaskSize: 0
[ 136.610] LinGreenFieldPosition: 0
[ 136.610] LinBlueMaskSize: 0
[ 136.610] LinBlueFieldPosition: 0
[ 136.610] LinRsvdMaskSize: 0
[ 136.610] LinRsvdFieldPosition: 0
[ 136.610] MaxPixelClock: 0
[ 136.610] Mode: 171 (0x0)
[ 136.610] ModeAttributes: 0x0
[ 136.610] WinAAttributes: 0x0
[ 136.610] WinBAttributes: 0x0
[ 136.610] WinGranularity: 0
[ 136.610] WinSize: 0
[ 136.610] WinASegment: 0x0
[ 136.610] WinBSegment: 0x0
[ 136.610] WinFuncPtr: 0x0
[ 136.610] BytesPerScanline: 0
[ 136.610] XResolution: 0
[ 136.610] YResolution: 0
[ 136.610] XCharSize: 0
[ 136.610] YCharSize: 0
[ 136.610] NumberOfPlanes: 0
[ 136.610] BitsPerPixel: 0
[ 136.610] NumberOfBanks: 0
[ 136.610] MemoryModel: 0
[ 136.610] BankSize: 0
[ 136.610] NumberOfImages: 0
[ 136.610] RedMaskSize: 0
[ 136.610] RedFieldPosition: 0
[ 136.610] GreenMaskSize: 0
[ 136.610] GreenFieldPosition: 0
[ 136.610] BlueMaskSize: 0
[ 136.610] BlueFieldPosition: 0
[ 136.610] RsvdMaskSize: 0
[ 136.610] RsvdFieldPosition: 0
[ 136.610] DirectColorModeInfo: 0
[ 136.610] PhysBasePtr: 0x0
[ 136.610] LinBytesPerScanLine: 0
[ 136.610] BnkNumberOfImagePages: 0
[ 136.610] LinNumberOfImagePages: 0
[ 136.610] LinRedMaskSize: 0
[ 136.610] LinRedFieldPosition: 0
[ 136.611] LinGreenMaskSize: 0
[ 136.611] LinGreenFieldPosition: 0
[ 136.611] LinBlueMaskSize: 0
[ 136.611] LinBlueFieldPosition: 0
[ 136.611] LinRsvdMaskSize: 0
[ 136.611] LinRsvdFieldPosition: 0
[ 136.611] MaxPixelClock: 0
[ 136.611] Mode: 13c (0x0)
[ 136.611] ModeAttributes: 0x0
[ 136.611] WinAAttributes: 0x0
[ 136.611] WinBAttributes: 0x0
[ 136.611] WinGranularity: 0
[ 136.611] WinSize: 0
[ 136.611] WinASegment: 0x0
[ 136.611] WinBSegment: 0x0
[ 136.611] WinFuncPtr: 0x0
[ 136.611] BytesPerScanline: 0
[ 136.611] XResolution: 0
[ 136.611] YResolution: 0
[ 136.611] XCharSize: 0
[ 136.611] YCharSize: 0
[ 136.611] NumberOfPlanes: 0
[ 136.611] BitsPerPixel: 0
[ 136.611] NumberOfBanks: 0
[ 136.611] MemoryModel: 0
[ 136.611] BankSize: 0
[ 136.611] NumberOfImages: 0
[ 136.611] RedMaskSize: 0
[ 136.611] RedFieldPosition: 0
[ 136.611] GreenMaskSize: 0
[ 136.611] GreenFieldPosition: 0
[ 136.611] BlueMaskSize: 0
[ 136.611] BlueFieldPosition: 0
[ 136.611] RsvdMaskSize: 0
[ 136.611] RsvdFieldPosition: 0
[ 136.611] DirectColorModeInfo: 0
[ 136.611] PhysBasePtr: 0x0
[ 136.611] LinBytesPerScanLine: 0
[ 136.611] BnkNumberOfImagePages: 0
[ 136.611] LinNumberOfImagePages: 0
[ 136.611] LinRedMaskSize: 0
[ 136.611] LinRedFieldPosition: 0
[ 136.611] LinGreenMaskSize: 0
[ 136.611] LinGreenFieldPosition: 0
[ 136.611] LinBlueMaskSize: 0
[ 136.611] LinBlueFieldPosition: 0
[ 136.611] LinRsvdMaskSize: 0
[ 136.611] LinRsvdFieldPosition: 0
[ 136.611] MaxPixelClock: 0
[ 136.612] Mode: 14d (0x0)
[ 136.612] ModeAttributes: 0x0
[ 136.612] WinAAttributes: 0x0
[ 136.612] WinBAttributes: 0x0
[ 136.612] WinGranularity: 0
[ 136.612] WinSize: 0
[ 136.612] WinASegment: 0x0
[ 136.612] WinBSegment: 0x0
[ 136.612] WinFuncPtr: 0x0
[ 136.612] BytesPerScanline: 0
[ 136.612] XResolution: 0
[ 136.612] YResolution: 0
[ 136.612] XCharSize: 0
[ 136.612] YCharSize: 0
[ 136.612] NumberOfPlanes: 0
[ 136.612] BitsPerPixel: 0
[ 136.612] NumberOfBanks: 0
[ 136.612] MemoryModel: 0
[ 136.612] BankSize: 0
[ 136.612] NumberOfImages: 0
[ 136.612] RedMaskSize: 0
[ 136.612] RedFieldPosition: 0
[ 136.612] GreenMaskSize: 0
[ 136.612] GreenFieldPosition: 0
[ 136.612] BlueMaskSize: 0
[ 136.612] BlueFieldPosition: 0
[ 136.612] RsvdMaskSize: 0
[ 136.612] RsvdFieldPosition: 0
[ 136.612] DirectColorModeInfo: 0
[ 136.612] PhysBasePtr: 0x0
[ 136.612] LinBytesPerScanLine: 0
[ 136.612] BnkNumberOfImagePages: 0
[ 136.612] LinNumberOfImagePages: 0
[ 136.612] LinRedMaskSize: 0
[ 136.612] LinRedFieldPosition: 0
[ 136.612] LinGreenMaskSize: 0
[ 136.612] LinGreenFieldPosition: 0
[ 136.612] LinBlueMaskSize: 0
[ 136.612] LinBlueFieldPosition: 0
[ 136.612] LinRsvdMaskSize: 0
[ 136.612] LinRsvdFieldPosition: 0
[ 136.612] MaxPixelClock: 0
[ 136.612] Mode: 15c (0x0)
[ 136.612] ModeAttributes: 0x0
[ 136.612] WinAAttributes: 0x0
[ 136.612] WinBAttributes: 0x0
[ 136.612] WinGranularity: 0
[ 136.612] WinSize: 0
[ 136.612] WinASegment: 0x0
[ 136.612] WinBSegment: 0x0
[ 136.612] WinFuncPtr: 0x0
[ 136.613] BytesPerScanline: 0
[ 136.613] XResolution: 0
[ 136.613] YResolution: 0
[ 136.613] XCharSize: 0
[ 136.613] YCharSize: 0
[ 136.613] NumberOfPlanes: 0
[ 136.613] BitsPerPixel: 0
[ 136.613] NumberOfBanks: 0
[ 136.613] MemoryModel: 0
[ 136.613] BankSize: 0
[ 136.613] NumberOfImages: 0
[ 136.613] RedMaskSize: 0
[ 136.613] RedFieldPosition: 0
[ 136.613] GreenMaskSize: 0
[ 136.613] GreenFieldPosition: 0
[ 136.613] BlueMaskSize: 0
[ 136.613] BlueFieldPosition: 0
[ 136.613] RsvdMaskSize: 0
[ 136.613] RsvdFieldPosition: 0
[ 136.613] DirectColorModeInfo: 0
[ 136.613] PhysBasePtr: 0x0
[ 136.613] LinBytesPerScanLine: 0
[ 136.613] BnkNumberOfImagePages: 0
[ 136.613] LinNumberOfImagePages: 0
[ 136.613] LinRedMaskSize: 0
[ 136.613] LinRedFieldPosition: 0
[ 136.613] LinGreenMaskSize: 0
[ 136.613] LinGreenFieldPosition: 0
[ 136.613] LinBlueMaskSize: 0
[ 136.613] LinBlueFieldPosition: 0
[ 136.613] LinRsvdMaskSize: 0
[ 136.613] LinRsvdFieldPosition: 0
[ 136.613] MaxPixelClock: 0
[ 136.613] Mode: 13a (0x0)
[ 136.613] ModeAttributes: 0x0
[ 136.613] WinAAttributes: 0x0
[ 136.613] WinBAttributes: 0x0
[ 136.613] WinGranularity: 0
[ 136.613] WinSize: 0
[ 136.613] WinASegment: 0x0
[ 136.613] WinBSegment: 0x0
[ 136.613] WinFuncPtr: 0x0
[ 136.613] BytesPerScanline: 0
[ 136.613] XResolution: 0
[ 136.613] YResolution: 0
[ 136.613] XCharSize: 0
[ 136.613] YCharSize: 0
[ 136.613] NumberOfPlanes: 0
[ 136.613] BitsPerPixel: 0
[ 136.613] NumberOfBanks: 0
[ 136.613] MemoryModel: 0
[ 136.613] BankSize: 0
[ 136.613] NumberOfImages: 0
[ 136.613] RedMaskSize: 0
[ 136.613] RedFieldPosition: 0
[ 136.613] GreenMaskSize: 0
[ 136.613] GreenFieldPosition: 0
[ 136.614] BlueMaskSize: 0
[ 136.614] BlueFieldPosition: 0
[ 136.614] RsvdMaskSize: 0
[ 136.614] RsvdFieldPosition: 0
[ 136.614] DirectColorModeInfo: 0
[ 136.614] PhysBasePtr: 0x0
[ 136.614] LinBytesPerScanLine: 0
[ 136.614] BnkNumberOfImagePages: 0
[ 136.614] LinNumberOfImagePages: 0
[ 136.614] LinRedMaskSize: 0
[ 136.614] LinRedFieldPosition: 0
[ 136.614] LinGreenMaskSize: 0
[ 136.614] LinGreenFieldPosition: 0
[ 136.614] LinBlueMaskSize: 0
[ 136.614] LinBlueFieldPosition: 0
[ 136.614] LinRsvdMaskSize: 0
[ 136.614] LinRsvdFieldPosition: 0
[ 136.614] MaxPixelClock: 0
[ 136.614] Mode: 14b (0x0)
[ 136.614] ModeAttributes: 0x0
[ 136.614] WinAAttributes: 0x0
[ 136.614] WinBAttributes: 0x0
[ 136.614] WinGranularity: 0
[ 136.614] WinSize: 0
[ 136.614] WinASegment: 0x0
[ 136.614] WinBSegment: 0x0
[ 136.614] WinFuncPtr: 0x0
[ 136.614] BytesPerScanline: 0
[ 136.614] XResolution: 0
[ 136.614] YResolution: 0
[ 136.614] XCharSize: 0
[ 136.614] YCharSize: 0
[ 136.614] NumberOfPlanes: 0
[ 136.614] BitsPerPixel: 0
[ 136.614] NumberOfBanks: 0
[ 136.614] MemoryModel: 0
[ 136.614] BankSize: 0
[ 136.614] NumberOfImages: 0
[ 136.614] RedMaskSize: 0
[ 136.614] RedFieldPosition: 0
[ 136.614] GreenMaskSize: 0
[ 136.614] GreenFieldPosition: 0
[ 136.614] BlueMaskSize: 0
[ 136.614] BlueFieldPosition: 0
[ 136.614] RsvdMaskSize: 0
[ 136.614] RsvdFieldPosition: 0
[ 136.614] DirectColorModeInfo: 0
[ 136.614] PhysBasePtr: 0x0
[ 136.614] LinBytesPerScanLine: 0
[ 136.614] BnkNumberOfImagePages: 0
[ 136.615] LinNumberOfImagePages: 0
[ 136.615] LinRedMaskSize: 0
[ 136.615] LinRedFieldPosition: 0
[ 136.615] LinGreenMaskSize: 0
[ 136.615] LinGreenFieldPosition: 0
[ 136.615] LinBlueMaskSize: 0
[ 136.615] LinBlueFieldPosition: 0
[ 136.615] LinRsvdMaskSize: 0
[ 136.615] LinRsvdFieldPosition: 0
[ 136.615] MaxPixelClock: 0
[ 136.615] Mode: 15a (0x0)
[ 136.615] ModeAttributes: 0x0
[ 136.615] WinAAttributes: 0x0
[ 136.615] WinBAttributes: 0x0
[ 136.615] WinGranularity: 0
[ 136.615] WinSize: 0
[ 136.615] WinASegment: 0x0
[ 136.615] WinBSegment: 0x0
[ 136.615] WinFuncPtr: 0x0
[ 136.615] BytesPerScanline: 0
[ 136.615] XResolution: 0
[ 136.615] YResolution: 0
[ 136.615] XCharSize: 0
[ 136.615] YCharSize: 0
[ 136.615] NumberOfPlanes: 0
[ 136.615] BitsPerPixel: 0
[ 136.615] NumberOfBanks: 0
[ 136.615] MemoryModel: 0
[ 136.615] BankSize: 0
[ 136.615] NumberOfImages: 0
[ 136.615] RedMaskSize: 0
[ 136.615] RedFieldPosition: 0
[ 136.615] GreenMaskSize: 0
[ 136.615] GreenFieldPosition: 0
[ 136.615] BlueMaskSize: 0
[ 136.615] BlueFieldPosition: 0
[ 136.615] RsvdMaskSize: 0
[ 136.615] RsvdFieldPosition: 0
[ 136.615] DirectColorModeInfo: 0
[ 136.615] PhysBasePtr: 0x0
[ 136.615] LinBytesPerScanLine: 0
[ 136.615] BnkNumberOfImagePages: 0
[ 136.615] LinNumberOfImagePages: 0
[ 136.615] LinRedMaskSize: 0
[ 136.615] LinRedFieldPosition: 0
[ 136.615] LinGreenMaskSize: 0
[ 136.615] LinGreenFieldPosition: 0
[ 136.616] LinBlueMaskSize: 0
[ 136.616] LinBlueFieldPosition: 0
[ 136.616] LinRsvdMaskSize: 0
[ 136.616] LinRsvdFieldPosition: 0
[ 136.616] MaxPixelClock: 0
[ 136.616] Mode: 107 (0x0)
[ 136.616] ModeAttributes: 0x0
[ 136.616] WinAAttributes: 0x0
[ 136.616] WinBAttributes: 0x0
[ 136.616] WinGranularity: 0
[ 136.616] WinSize: 0
[ 136.616] WinASegment: 0x0
[ 136.616] WinBSegment: 0x0
[ 136.616] WinFuncPtr: 0x0
[ 136.616] BytesPerScanline: 0
[ 136.616] XResolution: 0
[ 136.616] YResolution: 0
[ 136.616] XCharSize: 0
[ 136.616] YCharSize: 0
[ 136.616] NumberOfPlanes: 0
[ 136.616] BitsPerPixel: 0
[ 136.616] NumberOfBanks: 0
[ 136.616] MemoryModel: 0
[ 136.616] BankSize: 0
[ 136.616] NumberOfImages: 0
[ 136.616] RedMaskSize: 0
[ 136.616] RedFieldPosition: 0
[ 136.616] GreenMaskSize: 0
[ 136.616] GreenFieldPosition: 0
[ 136.616] BlueMaskSize: 0
[ 136.616] BlueFieldPosition: 0
[ 136.616] RsvdMaskSize: 0
[ 136.616] RsvdFieldPosition: 0
[ 136.616] DirectColorModeInfo: 0
[ 136.616] PhysBasePtr: 0x0
[ 136.616] LinBytesPerScanLine: 0
[ 136.616] BnkNumberOfImagePages: 0
[ 136.616] LinNumberOfImagePages: 0
[ 136.616] LinRedMaskSize: 0
[ 136.616] LinRedFieldPosition: 0
[ 136.616] LinGreenMaskSize: 0
[ 136.616] LinGreenFieldPosition: 0
[ 136.616] LinBlueMaskSize: 0
[ 136.616] LinBlueFieldPosition: 0
[ 136.616] LinRsvdMaskSize: 0
[ 136.616] LinRsvdFieldPosition: 0
[ 136.616] MaxPixelClock: 0
[ 136.617] Mode: 11a (0x0)
[ 136.617] ModeAttributes: 0x0
[ 136.617] WinAAttributes: 0x0
[ 136.617] WinBAttributes: 0x0
[ 136.617] WinGranularity: 0
[ 136.617] WinSize: 0
[ 136.617] WinASegment: 0x0
[ 136.617] WinBSegment: 0x0
[ 136.617] WinFuncPtr: 0x0
[ 136.617] BytesPerScanline: 0
[ 136.617] XResolution: 0
[ 136.617] YResolution: 0
[ 136.617] XCharSize: 0
[ 136.617] YCharSize: 0
[ 136.617] NumberOfPlanes: 0
[ 136.617] BitsPerPixel: 0
[ 136.617] NumberOfBanks: 0
[ 136.617] MemoryModel: 0
[ 136.617] BankSize: 0
[ 136.617] NumberOfImages: 0
[ 136.617] RedMaskSize: 0
[ 136.617] RedFieldPosition: 0
[ 136.617] GreenMaskSize: 0
[ 136.617] GreenFieldPosition: 0
[ 136.617] BlueMaskSize: 0
[ 136.617] BlueFieldPosition: 0
[ 136.617] RsvdMaskSize: 0
[ 136.617] RsvdFieldPosition: 0
[ 136.617] DirectColorModeInfo: 0
[ 136.617] PhysBasePtr: 0x0
[ 136.617] LinBytesPerScanLine: 0
[ 136.617] BnkNumberOfImagePages: 0
[ 136.617] LinNumberOfImagePages: 0
[ 136.617] LinRedMaskSize: 0
[ 136.617] LinRedFieldPosition: 0
[ 136.617] LinGreenMaskSize: 0
[ 136.617] LinGreenFieldPosition: 0
[ 136.617] LinBlueMaskSize: 0
[ 136.617] LinBlueFieldPosition: 0
[ 136.617] LinRsvdMaskSize: 0
[ 136.617] LinRsvdFieldPosition: 0
[ 136.617] MaxPixelClock: 0
[ 136.618] Mode: 11b (0x0)
[ 136.618] ModeAttributes: 0x0
[ 136.618] WinAAttributes: 0x0
[ 136.618] WinBAttributes: 0x0
[ 136.618] WinGranularity: 0
[ 136.618] WinSize: 0
[ 136.618] WinASegment: 0x0
[ 136.618] WinBSegment: 0x0
[ 136.618] WinFuncPtr: 0x0
[ 136.618] BytesPerScanline: 0
[ 136.618] XResolution: 0
[ 136.618] YResolution: 0
[ 136.618] XCharSize: 0
[ 136.618] YCharSize: 0
[ 136.618] NumberOfPlanes: 0
[ 136.618] BitsPerPixel: 0
[ 136.618] NumberOfBanks: 0
[ 136.618] MemoryModel: 0
[ 136.618] BankSize: 0
[ 136.618] NumberOfImages: 0
[ 136.618] RedMaskSize: 0
[ 136.618] RedFieldPosition: 0
[ 136.618] GreenMaskSize: 0
[ 136.618] GreenFieldPosition: 0
[ 136.618] BlueMaskSize: 0
[ 136.618] BlueFieldPosition: 0
[ 136.618] RsvdMaskSize: 0
[ 136.618] RsvdFieldPosition: 0
[ 136.618] DirectColorModeInfo: 0
[ 136.618] PhysBasePtr: 0x0
[ 136.618] LinBytesPerScanLine: 0
[ 136.618] BnkNumberOfImagePages: 0
[ 136.618] LinNumberOfImagePages: 0
[ 136.618] LinRedMaskSize: 0
[ 136.618] LinRedFieldPosition: 0
[ 136.618] LinGreenMaskSize: 0
[ 136.618] LinGreenFieldPosition: 0
[ 136.618] LinBlueMaskSize: 0
[ 136.618] LinBlueFieldPosition: 0
[ 136.618] LinRsvdMaskSize: 0
[ 136.618] LinRsvdFieldPosition: 0
[ 136.618] MaxPixelClock: 0
[ 136.619] Mode: 105 (1024x768)
[ 136.619] ModeAttributes: 0x9b
[ 136.619] WinAAttributes: 0x7
[ 136.619] WinBAttributes: 0x0
[ 136.619] WinGranularity: 64
[ 136.619] WinSize: 64
[ 136.619] WinASegment: 0xa000
[ 136.619] WinBSegment: 0x0
[ 136.619] WinFuncPtr: 0xc000723f
[ 136.619] BytesPerScanline: 1024
[ 136.619] XResolution: 1024
[ 136.619] YResolution: 768
[ 136.619] XCharSize: 8
[ 136.619] YCharSize: 16
[ 136.619] NumberOfPlanes: 1
[ 136.619] BitsPerPixel: 8
[ 136.619] NumberOfBanks: 1
[ 136.619] MemoryModel: 4
[ 136.619] BankSize: 0
[ 136.619] NumberOfImages: 9
[ 136.619] RedMaskSize: 0
[ 136.619] RedFieldPosition: 0
[ 136.619] GreenMaskSize: 0
[ 136.619] GreenFieldPosition: 0
[ 136.619] BlueMaskSize: 0
[ 136.619] BlueFieldPosition: 0
[ 136.619] RsvdMaskSize: 0
[ 136.619] RsvdFieldPosition: 0
[ 136.619] DirectColorModeInfo: 0
[ 136.619] PhysBasePtr: 0xc0000000
[ 136.619] LinBytesPerScanLine: 1024
[ 136.619] BnkNumberOfImagePages: 9
[ 136.619] LinNumberOfImagePages: 9
[ 136.619] LinRedMaskSize: 0
[ 136.619] LinRedFieldPosition: 0
[ 136.619] LinGreenMaskSize: 0
[ 136.619] LinGreenFieldPosition: 0
[ 136.619] LinBlueMaskSize: 0
[ 136.619] LinBlueFieldPosition: 0
[ 136.619] LinRsvdMaskSize: 0
[ 136.619] LinRsvdFieldPosition: 0
[ 136.619] MaxPixelClock: 230000000
[ 136.620] Mode: 117 (1024x768)
[ 136.620] ModeAttributes: 0x9b
[ 136.620] WinAAttributes: 0x7
[ 136.620] WinBAttributes: 0x0
[ 136.620] WinGranularity: 64
[ 136.620] WinSize: 64
[ 136.620] WinASegment: 0xa000
[ 136.620] WinBSegment: 0x0
[ 136.620] WinFuncPtr: 0xc000723f
[ 136.620] BytesPerScanline: 2048
[ 136.620] XResolution: 1024
[ 136.620] YResolution: 768
[ 136.620] XCharSize: 8
[ 136.620] YCharSize: 16
[ 136.620] NumberOfPlanes: 1
[ 136.620] BitsPerPixel: 16
[ 136.620] NumberOfBanks: 1
[ 136.620] MemoryModel: 6
[ 136.620] BankSize: 0
[ 136.620] NumberOfImages: 4
[ 136.620] RedMaskSize: 5
[ 136.620] RedFieldPosition: 11
[ 136.620] GreenMaskSize: 6
[ 136.620] GreenFieldPosition: 5
[ 136.620] BlueMaskSize: 5
[ 136.620] BlueFieldPosition: 0
[ 136.620] RsvdMaskSize: 0
[ 136.620] RsvdFieldPosition: 0
[ 136.620] DirectColorModeInfo: 0
[ 136.620] PhysBasePtr: 0xc0000000
[ 136.620] LinBytesPerScanLine: 2048
[ 136.620] BnkNumberOfImagePages: 4
[ 136.620] LinNumberOfImagePages: 4
[ 136.620] LinRedMaskSize: 5
[ 136.620] LinRedFieldPosition: 11
[ 136.620] LinGreenMaskSize: 6
[ 136.620] LinGreenFieldPosition: 5
[ 136.620] LinBlueMaskSize: 5
[ 136.621] LinBlueFieldPosition: 0
[ 136.621] LinRsvdMaskSize: 0
[ 136.621] LinRsvdFieldPosition: 0
[ 136.621] MaxPixelClock: 230000000
[ 136.621] *Mode: 118 (1024x768)
[ 136.621] ModeAttributes: 0x9b
[ 136.621] WinAAttributes: 0x7
[ 136.621] WinBAttributes: 0x0
[ 136.621] WinGranularity: 64
[ 136.622] WinSize: 64
[ 136.622] WinASegment: 0xa000
[ 136.622] WinBSegment: 0x0
[ 136.622] WinFuncPtr: 0xc000723f
[ 136.622] BytesPerScanline: 4096
[ 136.622] XResolution: 1024
[ 136.622] YResolution: 768
[ 136.622] XCharSize: 8
[ 136.622] YCharSize: 16
[ 136.622] NumberOfPlanes: 1
[ 136.622] BitsPerPixel: 32
[ 136.622] NumberOfBanks: 1
[ 136.622] MemoryModel: 6
[ 136.622] BankSize: 0
[ 136.622] NumberOfImages: 1
[ 136.622] RedMaskSize: 8
[ 136.622] RedFieldPosition: 16
[ 136.622] GreenMaskSize: 8
[ 136.622] GreenFieldPosition: 8
[ 136.622] BlueMaskSize: 8
[ 136.622] BlueFieldPosition: 0
[ 136.622] RsvdMaskSize: 8
[ 136.622] RsvdFieldPosition: 24
[ 136.622] DirectColorModeInfo: 0
[ 136.622] PhysBasePtr: 0xc0000000
[ 136.622] LinBytesPerScanLine: 4096
[ 136.622] BnkNumberOfImagePages: 1
[ 136.622] LinNumberOfImagePages: 1
[ 136.622] LinRedMaskSize: 8
[ 136.622] LinRedFieldPosition: 16
[ 136.622] LinGreenMaskSize: 8
[ 136.622] LinGreenFieldPosition: 8
[ 136.622] LinBlueMaskSize: 8
[ 136.622] LinBlueFieldPosition: 0
[ 136.622] LinRsvdMaskSize: 8
[ 136.622] LinRsvdFieldPosition: 24
[ 136.622] MaxPixelClock: 230000000
[ 136.623] *Mode: 112 (640x480)
[ 136.623] ModeAttributes: 0x9b
[ 136.623] WinAAttributes: 0x7
[ 136.623] WinBAttributes: 0x0
[ 136.623] WinGranularity: 64
[ 136.623] WinSize: 64
[ 136.623] WinASegment: 0xa000
[ 136.623] WinBSegment: 0x0
[ 136.623] WinFuncPtr: 0xc000723f
[ 136.623] BytesPerScanline: 2560
[ 136.623] XResolution: 640
[ 136.623] YResolution: 480
[ 136.623] XCharSize: 8
[ 136.623] YCharSize: 16
[ 136.623] NumberOfPlanes: 1
[ 136.623] BitsPerPixel: 32
[ 136.623] NumberOfBanks: 1
[ 136.623] MemoryModel: 6
[ 136.623] BankSize: 0
[ 136.623] NumberOfImages: 5
[ 136.623] RedMaskSize: 8
[ 136.623] RedFieldPosition: 16
[ 136.623] GreenMaskSize: 8
[ 136.623] GreenFieldPosition: 8
[ 136.623] BlueMaskSize: 8
[ 136.623] BlueFieldPosition: 0
[ 136.623] RsvdMaskSize: 8
[ 136.623] RsvdFieldPosition: 24
[ 136.623] DirectColorModeInfo: 0
[ 136.623] PhysBasePtr: 0xc0000000
[ 136.623] LinBytesPerScanLine: 2560
[ 136.623] BnkNumberOfImagePages: 5
[ 136.623] LinNumberOfImagePages: 5
[ 136.623] LinRedMaskSize: 8
[ 136.623] LinRedFieldPosition: 16
[ 136.623] LinGreenMaskSize: 8
[ 136.623] LinGreenFieldPosition: 8
[ 136.623] LinBlueMaskSize: 8
[ 136.623] LinBlueFieldPosition: 0
[ 136.623] LinRsvdMaskSize: 8
[ 136.623] LinRsvdFieldPosition: 24
[ 136.623] MaxPixelClock: 230000000
[ 136.624] Mode: 114 (800x600)
[ 136.624] ModeAttributes: 0x9b
[ 136.624] WinAAttributes: 0x7
[ 136.624] WinBAttributes: 0x0
[ 136.624] WinGranularity: 64
[ 136.624] WinSize: 64
[ 136.624] WinASegment: 0xa000
[ 136.624] WinBSegment: 0x0
[ 136.624] WinFuncPtr: 0xc000723f
[ 136.624] BytesPerScanline: 1600
[ 136.624] XResolution: 800
[ 136.624] YResolution: 600
[ 136.624] XCharSize: 8
[ 136.624] YCharSize: 16
[ 136.624] NumberOfPlanes: 1
[ 136.624] BitsPerPixel: 16
[ 136.624] NumberOfBanks: 1
[ 136.624] MemoryModel: 6
[ 136.624] BankSize: 0
[ 136.624] NumberOfImages: 7
[ 136.624] RedMaskSize: 5
[ 136.624] RedFieldPosition: 11
[ 136.624] GreenMaskSize: 6
[ 136.624] GreenFieldPosition: 5
[ 136.624] BlueMaskSize: 5
[ 136.624] BlueFieldPosition: 0
[ 136.624] RsvdMaskSize: 0
[ 136.624] RsvdFieldPosition: 0
[ 136.624] DirectColorModeInfo: 0
[ 136.624] PhysBasePtr: 0xc0000000
[ 136.624] LinBytesPerScanLine: 1600
[ 136.624] BnkNumberOfImagePages: 7
[ 136.624] LinNumberOfImagePages: 7
[ 136.624] LinRedMaskSize: 5
[ 136.624] LinRedFieldPosition: 11
[ 136.624] LinGreenMaskSize: 6
[ 136.624] LinGreenFieldPosition: 5
[ 136.624] LinBlueMaskSize: 5
[ 136.624] LinBlueFieldPosition: 0
[ 136.624] LinRsvdMaskSize: 0
[ 136.624] LinRsvdFieldPosition: 0
[ 136.624] MaxPixelClock: 230000000
[ 136.625] *Mode: 115 (800x600)
[ 136.625] ModeAttributes: 0x9b
[ 136.625] WinAAttributes: 0x7
[ 136.625] WinBAttributes: 0x0
[ 136.625] WinGranularity: 64
[ 136.625] WinSize: 64
[ 136.625] WinASegment: 0xa000
[ 136.625] WinBSegment: 0x0
[ 136.625] WinFuncPtr: 0xc000723f
[ 136.625] BytesPerScanline: 3200
[ 136.625] XResolution: 800
[ 136.625] YResolution: 600
[ 136.625] XCharSize: 8
[ 136.626] YCharSize: 16
[ 136.626] NumberOfPlanes: 1
[ 136.626] BitsPerPixel: 32
[ 136.626] NumberOfBanks: 1
[ 136.626] MemoryModel: 6
[ 136.626] BankSize: 0
[ 136.626] NumberOfImages: 3
[ 136.626] RedMaskSize: 8
[ 136.626] RedFieldPosition: 16
[ 136.626] GreenMaskSize: 8
[ 136.626] GreenFieldPosition: 8
[ 136.626] BlueMaskSize: 8
[ 136.626] BlueFieldPosition: 0
[ 136.626] RsvdMaskSize: 8
[ 136.626] RsvdFieldPosition: 24
[ 136.626] DirectColorModeInfo: 0
[ 136.626] PhysBasePtr: 0xc0000000
[ 136.626] LinBytesPerScanLine: 3200
[ 136.626] BnkNumberOfImagePages: 3
[ 136.626] LinNumberOfImagePages: 3
[ 136.626] LinRedMaskSize: 8
[ 136.626] LinRedFieldPosition: 16
[ 136.626] LinGreenMaskSize: 8
[ 136.626] LinGreenFieldPosition: 8
[ 136.626] LinBlueMaskSize: 8
[ 136.626] LinBlueFieldPosition: 0
[ 136.626] LinRsvdMaskSize: 8
[ 136.626] LinRsvdFieldPosition: 24
[ 136.626] MaxPixelClock: 230000000
[ 136.626] Mode: 101 (640x480)
[ 136.626] ModeAttributes: 0x9b
[ 136.626] WinAAttributes: 0x7
[ 136.626] WinBAttributes: 0x0
[ 136.626] WinGranularity: 64
[ 136.626] WinSize: 64
[ 136.626] WinASegment: 0xa000
[ 136.626] WinBSegment: 0x0
[ 136.626] WinFuncPtr: 0xc000723f
[ 136.626] BytesPerScanline: 640
[ 136.626] XResolution: 640
[ 136.626] YResolution: 480
[ 136.626] XCharSize: 8
[ 136.627] YCharSize: 16
[ 136.627] NumberOfPlanes: 1
[ 136.627] BitsPerPixel: 8
[ 136.627] NumberOfBanks: 1
[ 136.627] MemoryModel: 4
[ 136.627] BankSize: 0
[ 136.627] NumberOfImages: 23
[ 136.627] RedMaskSize: 0
[ 136.627] RedFieldPosition: 0
[ 136.627] GreenMaskSize: 0
[ 136.627] GreenFieldPosition: 0
[ 136.627] BlueMaskSize: 0
[ 136.627] BlueFieldPosition: 0
[ 136.627] RsvdMaskSize: 0
[ 136.627] RsvdFieldPosition: 0
[ 136.627] DirectColorModeInfo: 0
[ 136.627] PhysBasePtr: 0xc0000000
[ 136.627] LinBytesPerScanLine: 640
[ 136.627] BnkNumberOfImagePages: 23
[ 136.627] LinNumberOfImagePages: 23
[ 136.627] LinRedMaskSize: 0
[ 136.627] LinRedFieldPosition: 0
[ 136.627] LinGreenMaskSize: 0
[ 136.627] LinGreenFieldPosition: 0
[ 136.627] LinBlueMaskSize: 0
[ 136.627] LinBlueFieldPosition: 0
[ 136.627] LinRsvdMaskSize: 0
[ 136.627] LinRsvdFieldPosition: 0
[ 136.627] MaxPixelClock: 230000000
[ 136.627] Mode: 103 (800x600)
[ 136.627] ModeAttributes: 0x9b
[ 136.627] WinAAttributes: 0x7
[ 136.627] WinBAttributes: 0x0
[ 136.627] WinGranularity: 64
[ 136.627] WinSize: 64
[ 136.627] WinASegment: 0xa000
[ 136.627] WinBSegment: 0x0
[ 136.628] WinFuncPtr: 0xc000723f
[ 136.628] BytesPerScanline: 832
[ 136.628] XResolution: 800
[ 136.628] YResolution: 600
[ 136.628] XCharSize: 8
[ 136.628] YCharSize: 16
[ 136.628] NumberOfPlanes: 1
[ 136.628] BitsPerPixel: 8
[ 136.628] NumberOfBanks: 1
[ 136.628] MemoryModel: 4
[ 136.628] BankSize: 0
[ 136.628] NumberOfImages: 14
[ 136.628] RedMaskSize: 0
[ 136.628] RedFieldPosition: 0
[ 136.628] GreenMaskSize: 0
[ 136.628] GreenFieldPosition: 0
[ 136.628] BlueMaskSize: 0
[ 136.628] BlueFieldPosition: 0
[ 136.628] RsvdMaskSize: 0
[ 136.628] RsvdFieldPosition: 0
[ 136.628] DirectColorModeInfo: 0
[ 136.628] PhysBasePtr: 0xc0000000
[ 136.628] LinBytesPerScanLine: 832
[ 136.628] BnkNumberOfImagePages: 14
[ 136.628] LinNumberOfImagePages: 14
[ 136.628] LinRedMaskSize: 0
[ 136.628] LinRedFieldPosition: 0
[ 136.628] LinGreenMaskSize: 0
[ 136.628] LinGreenFieldPosition: 0
[ 136.628] LinBlueMaskSize: 0
[ 136.628] LinBlueFieldPosition: 0
[ 136.628] LinRsvdMaskSize: 0
[ 136.628] LinRsvdFieldPosition: 0
[ 136.628] MaxPixelClock: 230000000
[ 136.629] Mode: 111 (640x480)
[ 136.629] ModeAttributes: 0x9b
[ 136.629] WinAAttributes: 0x7
[ 136.629] WinBAttributes: 0x0
[ 136.629] WinGranularity: 64
[ 136.629] WinSize: 64
[ 136.629] WinASegment: 0xa000
[ 136.629] WinBSegment: 0x0
[ 136.629] WinFuncPtr: 0xc000723f
[ 136.629] BytesPerScanline: 1280
[ 136.629] XResolution: 640
[ 136.629] YResolution: 480
[ 136.629] XCharSize: 8
[ 136.629] YCharSize: 16
[ 136.629] NumberOfPlanes: 1
[ 136.629] BitsPerPixel: 16
[ 136.629] NumberOfBanks: 1
[ 136.629] MemoryModel: 6
[ 136.629] BankSize: 0
[ 136.629] NumberOfImages: 12
[ 136.629] RedMaskSize: 5
[ 136.629] RedFieldPosition: 11
[ 136.629] GreenMaskSize: 6
[ 136.629] GreenFieldPosition: 5
[ 136.629] BlueMaskSize: 5
[ 136.629] BlueFieldPosition: 0
[ 136.629] RsvdMaskSize: 0
[ 136.629] RsvdFieldPosition: 0
[ 136.629] DirectColorModeInfo: 0
[ 136.629] PhysBasePtr: 0xc0000000
[ 136.629] LinBytesPerScanLine: 1280
[ 136.629] BnkNumberOfImagePages: 12
[ 136.629] LinNumberOfImagePages: 12
[ 136.629] LinRedMaskSize: 5
[ 136.629] LinRedFieldPosition: 11
[ 136.629] LinGreenMaskSize: 6
[ 136.629] LinGreenFieldPosition: 5
[ 136.629] LinBlueMaskSize: 5
[ 136.629] LinBlueFieldPosition: 0
[ 136.629] LinRsvdMaskSize: 0
[ 136.629] LinRsvdFieldPosition: 0
[ 136.629] MaxPixelClock: 230000000
[ 136.629]
[ 136.629] (II) VESA(0): Total Memory: 123 64KB banks (7872kB)
[ 136.629] (II) VESA(0): <default monitor>: Using hsync value of 49.41 kHz
[ 136.629] (II) VESA(0): <default monitor>: Using vrefresh value of 60.04 Hz
[ 136.629] (WW) VESA(0): Unable to estimate virtual size
[ 136.629] (II) VESA(0): Not using built-in mode "1024x768" (no mode of this name)
[ 136.629] (II) VESA(0): Not using built-in mode "800x600" (no mode of this name)
[ 136.629] (II) VESA(0): Not using built-in mode "640x480" (no mode of this name)
[ 136.629] (WW) VESA(0): No valid modes left. Trying less strict filter...
[ 136.629] (II) VESA(0): <default monitor>: Using hsync value of 49.41 kHz
[ 136.629] (II) VESA(0): <default monitor>: Using vrefresh value of 60.04 Hz
[ 136.629] (WW) VESA(0): Unable to estimate virtual size
[ 136.629] (II) VESA(0): Not using built-in mode "1024x768" (hsync out of range)
[ 136.629] (II) VESA(0): Not using built-in mode "800x600" (hsync out of range)
[ 136.629] (II) VESA(0): Not using built-in mode "640x480" (hsync out of range)
[ 136.629] (WW) VESA(0): No valid modes left. Trying aggressive sync range...
[ 136.629] (II) VESA(0): <default monitor>: Using hsync range of 31.50-49.41 kHz
[ 136.629] (II) VESA(0): <default monitor>: Using vrefresh range of 50.00-60.04 Hz
[ 136.629] (WW) VESA(0): Unable to estimate virtual size
[ 136.630] (II) VESA(0): Not using built-in mode "640x480" (hsync out of range)
[ 136.630] (--) VESA(0): Virtual size is 1024x768 (pitch 1024)
[ 136.630] (**) VESA(0): *Built-in mode "1024x768"
[ 136.630] (**) VESA(0): *Built-in mode "800x600"
[ 136.630] (**) VESA(0): Display dimensions: (330, 210) mm
[ 136.630] (**) VESA(0): DPI set to (78, 92)
[ 136.630] (II) VESA(0): Attempting to use 60Hz refresh for mode "1024x768" (118)
[ 136.633] (II) VESA(0): Attempting to use 60Hz refresh for mode "800x600" (115)
[ 136.633] (**) VESA(0): Using "Shadow Framebuffer"
[ 136.633] (II) Loading sub module "shadow"
[ 136.633] (II) LoadModule: "shadow"
[ 136.634] (II) Loading /usr/lib/xorg/modules/libshadow.so
[ 136.634] (II) Module shadow: vendor="X
Back to top
View user's profile Send private message
Jaglover
Watchman
Watchman


Joined: 29 May 2005
Posts: 8291
Location: Saint Amant, Acadiana

PostPosted: Wed Apr 13, 2011 11:22 am    Post subject: Reply with quote

According to this KMS is mandatory, do you have it enabled?
_________________
My Gentoo installation notes.
Please learn how to denote units correctly!
Back to top
View user's profile Send private message
qemist
n00b
n00b


Joined: 10 Apr 2010
Posts: 18

PostPosted: Wed Apr 13, 2011 7:25 pm    Post subject: Reply with quote

Jaglover wrote:
According to this KMS is mandatory, do you have it enabled?


Good find. KMS is supposed to be enabled by default but checking my options I find that CONFIG_DRM_I915_KMS was not set. I'll try it and see.
Back to top
View user's profile Send private message
qemist
n00b
n00b


Joined: 10 Apr 2010
Posts: 18

PostPosted: Wed Apr 13, 2011 7:32 pm    Post subject: Reply with quote

Jaglover wrote:
According to this KMS is mandatory, do you have it enabled?


Yipee! sharp text is back! I thank you Jaglover, you are a scholar and a gentleman.

Now to see if I can stop udevd from spamming the console for two minutes when I boot...
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Desktop Environments All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum