On Fri, Aug 26, 2016 at 09:52:13AM +0900, Michel Dänzer wrote: > On 26/08/16 03:01 AM, Omar Eshmawi wrote: > > > > Hey, I'm having weird problems w/ XPutImage () > > on 2 different computers w/ different graphics cards > > when I put in certain values for the width,height fields > > the image isn't drawn > > specifically when the dimensions take up a space smaller than 4096 pixels, > > it won't draw > > so XPutImage (<display>,<drawable>,<gc>,<ximg>,0,0,0,0,64,64) works > > XPutImage (<display>,<drawable>,<gc>,<ximg>,0,0,0,0,32,32) doesn't > > or any of these also don't work (width,height) -> (32,65) (66,30) (63,63) > > however, (32,128) would work > > so am I using the function wrong b/c I haven't seen anyone else have this > > problem through internet search. > > I'm using the main window of my application for the <drawable> parameter > > & I'm using DefaultGC() for my <gc> parameter > > Please provide the exact code you're running, and the corresponding Xorg > log files. Hi sorry it took me a day to reply. It's very odd but my problem suddenly vanished yesterday. It seems like I updated the packages in my system at some point between yesterday & the day before and some package that was upgraded (I had suspected my graphics driver (nvidia-304xx)) had been the culprit of the XPutImage behaviour I was experiencing. Unfortunately no matter how hard I tried I could not replicate my bug (downgraded nvidia-304xx multiple times (to 304xx-304.131-16 -15 -3 etc...)) & I rebooted my system like 5 times yesterday as well. I still suspect my graphics driver although an old version did not seem to bring my bug back. But I'll attach my code & log files in case you were still interested.
// Written by Ch. Tronche (http://tronche.lri.fr:8000/) // Copyright by the author. This is unmaintained, no-warranty free software. // Please use freely. It is appreciated (but by no means mandatory) to // acknowledge the author's contribution. Thank you. // Started on Thu Jun 26 23:29:03 1997
//
// Xlib tutorial: 1st program
// Make a window appear on the screen.
//
#include <stdint.h>
#include <X11/Xlib.h> // Every Xlib program must include this
#include <X11/Xutil.h>
#include <unistd.h> // So we got the profile for 10 seconds
#include <malloc.h> // So we got the profile for 10 seconds
#include <memory.h>
const char* NIL = 0 ;
XImage* trueColrXImg(Display *display, Visual *visual, int width, int height) {
uint32_t* img = (uint32_t*)malloc (width*height*4) ;
memset (img,0x80,width*height*4) ;
return XCreateImage (display, visual, 24, ZPixmap, 0, (char*)img, width, height, 32, 0) ;
}
int main () {
Window w ;
XEvent e ;
Display* dpy ;
Visual* viz ;
XImage* ximg ;
int x,y ;
uint32_t white ;
uint32_t black ;
x =
y = 0 ;
dpy = XOpenDisplay(NIL) ;
if (dpy == 0) throw 0x006D0401 ;
white = WhitePixel (dpy,DefaultScreen(dpy)) ;
black = BlackPixel (dpy,DefaultScreen(dpy)) ;
viz = DefaultVisual (dpy,0) ;
w = XCreateSimpleWindow(dpy, RootWindow(dpy,0), x, y,
640, 480, 0, 0, black);
ximg = trueColrXImg (dpy,viz,128,128) ;
XSelectInput(dpy, w, StructureNotifyMask|ExposureMask);
XMapWindow (dpy, w) ;
do XNextEvent(dpy, &e) ;
while (e.type != MapNotify) ;
//XFlush (dpy) ;
//
do XNextEvent(dpy, &e) ;
while (e.type != Expose) ;
XPutImage (dpy,w,DefaultGC (dpy,0),ximg,0,0,0 ,0,64,64 ) ;
XPutImage (dpy,w,DefaultGC (dpy,0),ximg,0,0,64 ,0,16,16 ) ;
XPutImage (dpy,w,DefaultGC (dpy,0),ximg,0,0,128 ,0,65,65 ) ;
XPutImage (dpy,w,DefaultGC (dpy,0),ximg,0,0,64*3,0,32,128) ;
/* ms_time() returns the time the program has been running in milliseconds */
while (ms_time() < 3000) ;
XDestroyImage (ximg) ;
XDestroyWindow(dpy,w) ;
XCloseDisplay (dpy) ;
return 0 ;
}
Xorg.0.log.old
Description: application/trash
[ 896.575] X.Org X Server 1.18.4 Release Date: 2016-07-19 [ 896.575] X Protocol Version 11, Revision 0 [ 896.575] Build Operating System: Linux 4.5.4-1-ARCH x86_64 [ 896.575] Current Operating System: Linux NeoZelux 4.7.1-1-ARCH #1 SMP PREEMPT Wed Aug 17 08:13:35 CEST 2016 x86_64 [ 896.575] Kernel command line: BOOT_IMAGE=../vmlinuz-linux root=/dev/sda3 rw initrd=../initramfs-linux.img [ 896.575] Build Date: 19 July 2016 05:54:24PM [ 896.575] [ 896.576] Current version of pixman: 0.34.0 [ 896.576] Before reporting problems, check http://wiki.x.org to make sure that you have the latest version. [ 896.576] Markers: (--) probed, (**) from config file, (==) default setting, (++) from command line, (!!) notice, (II) informational, (WW) warning, (EE) error, (NI) not implemented, (??) unknown. [ 896.576] (==) Log file: "/var/log/Xorg.0.log", Time: Thu Aug 25 19:47:51 2016 [ 896.622] (==) Using config file: "/etc/X11/xorg.conf" [ 896.622] (==) Using config directory: "/etc/X11/xorg.conf.d" [ 896.622] (==) Using system config directory "/usr/share/X11/xorg.conf.d" [ 896.667] (==) ServerLayout "Layout0" [ 896.667] (**) |-->Screen "Screen0" (0) [ 896.667] (**) | |-->Monitor "Monitor0" [ 896.668] (**) | |-->Device "Device0" [ 896.668] (**) | |-->GPUDevice "Device0" [ 896.668] (**) |-->Input Device "Keyboard0" [ 896.668] (**) |-->Input Device "Mouse0" [ 896.668] (**) Option "Xinerama" "0" [ 896.668] (==) Automatically adding devices [ 896.668] (==) Automatically enabling devices [ 896.668] (==) Automatically adding GPU devices [ 896.668] (==) Max clients allowed: 256, resource mask: 0x1fffff [ 896.741] (==) 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/ [ 896.741] (==) ModulePath set to "/usr/lib/xorg/modules" [ 896.741] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled. [ 896.741] (WW) Disabling Keyboard0 [ 896.741] (WW) Disabling Mouse0 [ 896.741] (II) Loader magic: 0x821d40 [ 896.741] (II) Module ABI versions: [ 896.741] X.Org ANSI C Emulation: 0.4 [ 896.741] X.Org Video Driver: 20.0 [ 896.741] X.Org XInput driver : 22.1 [ 896.741] X.Org Server Extension : 9.0 [ 896.742] (++) using VT number 1 [ 896.742] (--) controlling tty is VT number 1, auto-enabling KeepTty [ 896.748] (II) systemd-logind: took control of session /org/freedesktop/login1/session/c1 [ 896.748] (II) xfree86: Adding drm device (/dev/dri/card0) [ 896.749] (II) systemd-logind: got fd for /dev/dri/card0 226:0 fd 8 paused 0 [ 896.750] (--) PCI:*(0:1:0:0) 10de:00c1:10de:0245 rev 162, Mem @ 0xf6000000/16777216, 0xe0000000/268435456, 0xf5000000/16777216, BIOS @ 0x????????/131072 [ 896.750] (WW) Open ACPI failed (/var/run/acpid.socket) (No such file or directory) [ 896.750] (II) LoadModule: "glx" [ 896.843] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so [ 897.249] (II) Module glx: vendor="NVIDIA Corporation" [ 897.249] compiled for 4.0.2, module version = 1.0.0 [ 897.249] Module class: X.Org Server Extension [ 897.249] (II) NVIDIA GLX Module 304.131 Sun Nov 8 22:03:20 PST 2015 [ 897.249] (II) LoadModule: "nvidia" [ 897.249] (II) Loading /usr/lib/xorg/modules/drivers/nvidia_drv.so [ 897.309] (II) Module nvidia: vendor="NVIDIA Corporation" [ 897.309] compiled for 4.0.2, module version = 1.0.0 [ 897.309] Module class: X.Org Video Driver [ 897.332] (II) NVIDIA dlloader X Driver 304.131 Sun Nov 8 21:45:02 PST 2015 [ 897.332] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs [ 897.333] (II) Loading sub module "fb" [ 897.333] (II) LoadModule: "fb" [ 897.349] (II) Loading /usr/lib/xorg/modules/libfb.so [ 897.355] (II) Module fb: vendor="X.Org Foundation" [ 897.355] compiled for 1.18.4, module version = 1.0.0 [ 897.355] ABI class: X.Org ANSI C Emulation, version 0.4 [ 897.355] (II) Loading sub module "wfb" [ 897.355] (II) LoadModule: "wfb" [ 897.355] (II) Loading /usr/lib/xorg/modules/libwfb.so [ 897.361] (II) Module wfb: vendor="X.Org Foundation" [ 897.361] compiled for 1.18.4, module version = 1.0.0 [ 897.361] ABI class: X.Org ANSI C Emulation, version 0.4 [ 897.361] (II) Loading sub module "ramdac" [ 897.361] (II) LoadModule: "ramdac" [ 897.361] (II) Module "ramdac" already built-in [ 897.381] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32 [ 897.381] (==) NVIDIA(0): RGB weight 888 [ 897.381] (==) NVIDIA(0): Default visual is TrueColor [ 897.381] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0) [ 897.381] (**) NVIDIA(0): Option "Stereo" "0" [ 897.381] (**) NVIDIA(0): Option "nvidiaXineramaInfoOrder" "CRT-1" [ 897.381] (**) NVIDIA(0): Stereo disabled by request [ 897.381] (**) NVIDIA(0): Option "MetaModes" "CRT-1: 1280x1024_60 +0+0, CRT-0: nvidia-auto-select +0+0" [ 897.381] (**) NVIDIA(0): Enabling 2D acceleration [ 898.267] (II) NVIDIA(GPU-0): Display (HP vs17 (CRT-0)) does not support NVIDIA 3D Vision [ 898.267] (II) NVIDIA(GPU-0): stereo. [ 898.268] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-1 [ 898.293] (II) NVIDIA(0): NVIDIA GPU GeForce 6800 (NV41) at PCI:1:0:0 (GPU-0) [ 898.293] (--) NVIDIA(0): Memory: 262144 kBytes [ 898.293] (--) NVIDIA(0): VideoBIOS: 05.41.02.34.15 [ 898.293] (II) NVIDIA(0): Detected PCI Express Link width: 16X [ 898.293] (--) NVIDIA(0): Interlaced video modes are supported on this GPU [ 898.293] (--) NVIDIA(0): Valid display device(s) on GeForce 6800 at PCI:1:0:0 [ 898.293] (--) NVIDIA(0): HP vs17 (CRT-0) (connected) [ 898.293] (--) NVIDIA(0): CRT-1 (connected) [ 898.293] (--) NVIDIA(0): TV-0 [ 898.293] (--) NVIDIA(0): DFP-0 [ 898.293] (--) NVIDIA(0): HP vs17 (CRT-0): 400.0 MHz maximum pixel clock [ 898.293] (--) NVIDIA(0): CRT-1: 400.0 MHz maximum pixel clock [ 898.293] (--) NVIDIA(0): TV-0: 400.0 MHz maximum pixel clock [ 898.293] (--) NVIDIA(0): TV encoder: Unknown [ 898.293] (--) NVIDIA(0): DFP-0: 155.0 MHz maximum pixel clock [ 898.293] (--) NVIDIA(0): DFP-0: Internal Single Link TMDS [ 898.293] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display [ 898.293] (**) NVIDIA(0): device HP vs17 (CRT-0) (Using EDID frequencies has been [ 898.293] (**) NVIDIA(0): enabled on all display devices.) [ 898.293] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display [ 898.293] (**) NVIDIA(0): device CRT-1 (Using EDID frequencies has been enabled on [ 898.293] (**) NVIDIA(0): all display devices.) [ 898.294] (II) NVIDIA(0): Validated MetaModes: [ 898.294] (II) NVIDIA(0): "CRT-1:1280x1024_60+0+0,CRT-0:nvidia-auto-select+0+0" [ 898.294] (II) NVIDIA(0): Virtual screen size determined to be 1280 x 1024 [ 898.294] (WW) NVIDIA(0): Unable to support custom viewPortOut 1280 x 720 +0 +152 [ 898.294] (--) NVIDIA(0): DPI set to (95, 96); computed from "UseEdidDpi" X config [ 898.294] (--) NVIDIA(0): option [ 898.294] (--) Depth 24 pixmap format is 32 bpp [ 898.305] (II) NVIDIA(0): ACPI: failed to connect to the ACPI event daemon; the daemon [ 898.305] (II) NVIDIA(0): may not be running or the "AcpidSocketPath" X [ 898.305] (II) NVIDIA(0): configuration option may not be set correctly. When the [ 898.305] (II) NVIDIA(0): ACPI event daemon is available, the NVIDIA X driver will [ 898.305] (II) NVIDIA(0): try to use it to receive ACPI event notifications. For [ 898.305] (II) NVIDIA(0): details, please see the "ConnectToAcpid" and [ 898.305] (II) NVIDIA(0): "AcpidSocketPath" X configuration options in Appendix B: X [ 898.305] (II) NVIDIA(0): Config Options in the README. [ 898.305] (II) NVIDIA(0): Setting mode "CRT-1:1280x1024_60+0+0,CRT-0:nvidia-auto-select+0+0" [ 898.556] (==) NVIDIA(0): Disabling shared memory pixmaps [ 898.556] (==) NVIDIA(0): Backing store enabled [ 898.556] (==) NVIDIA(0): Silken mouse enabled [ 898.557] (**) NVIDIA(0): DPMS enabled [ 898.558] (II) Loading sub module "dri2" [ 898.558] (II) LoadModule: "dri2" [ 898.558] (II) Module "dri2" already built-in [ 898.558] (II) NVIDIA(0): [DRI2] Setup complete [ 898.558] (II) NVIDIA(0): [DRI2] VDPAU driver: nvidia [ 898.558] (--) RandR disabled [ 898.561] (II) Initializing extension GLX [ 898.561] (II) Indirect GLX disabled.(II) config/udev: Adding input device Power Button (/dev/input/event6) [ 898.942] (**) Power Button: Applying InputClass "evdev keyboard catchall" [ 898.942] (II) LoadModule: "evdev" [ 898.942] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so [ 898.975] (II) Module evdev: vendor="X.Org Foundation" [ 898.975] compiled for 1.18.3, module version = 2.10.3 [ 898.975] Module class: X.Org XInput Driver [ 898.975] ABI class: X.Org XInput driver, version 22.1 [ 898.976] (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 28 paused 0 [ 898.976] (II) Using input driver 'evdev' for 'Power Button' [ 898.976] (**) Power Button: always reports core events [ 898.976] (**) evdev: Power Button: Device: "/dev/input/event6" [ 898.976] (--) evdev: Power Button: Vendor 0 Product 0x1 [ 898.976] (--) evdev: Power Button: Found keys [ 898.976] (II) evdev: Power Button: Configuring as keyboard [ 898.976] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXPWRBN:00/input/input8/event6" [ 898.976] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 6) [ 898.976] (**) Option "xkb_rules" "evdev" [ 898.976] (II) config/udev: Adding input device Power Button (/dev/input/event5) [ 898.976] (**) Power Button: Applying InputClass "evdev keyboard catchall" [ 898.976] (II) systemd-logind: got fd for /dev/input/event5 13:69 fd 29 paused 0 [ 898.976] (II) Using input driver 'evdev' for 'Power Button' [ 898.976] (**) Power Button: always reports core events [ 898.976] (**) evdev: Power Button: Device: "/dev/input/event5" [ 898.976] (--) evdev: Power Button: Vendor 0 Product 0x1 [ 898.976] (--) evdev: Power Button: Found keys [ 898.976] (II) evdev: Power Button: Configuring as keyboard [ 898.976] (**) Option "config_info" "udev:/sys/devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input7/event5" [ 898.976] (II) XINPUT: Adding extended input device "Power Button" (type: KEYBOARD, id 7) [ 898.976] (**) Option "xkb_rules" "evdev" [ 898.977] (II) config/udev: Adding input device HDA Intel MID Rear Mic (/dev/input/event8) [ 898.977] (II) No input driver specified, ignoring this device. [ 898.977] (II) This device may have been added with another device file. [ 898.977] (II) config/udev: Adding input device HDA Intel MID Line (/dev/input/event9) [ 898.977] (II) No input driver specified, ignoring this device. [ 898.977] (II) This device may have been added with another device file. [ 898.977] (II) config/udev: Adding input device HDA Intel MID Line Out (/dev/input/event10) [ 898.977] (II) No input driver specified, ignoring this device. [ 898.977] (II) This device may have been added with another device file. [ 898.977] (II) config/udev: Adding input device HDA Intel MID Front Headphone (/dev/input/event11) [ 898.977] (II) No input driver specified, ignoring this device. [ 898.977] (II) This device may have been added with another device file. [ 898.978] (II) config/udev: Adding input device HDA Intel MID Front Mic (/dev/input/event7) [ 898.978] (II) No input driver specified, ignoring this device. [ 898.978] (II) This device may have been added with another device file. [ 898.978] (II) config/udev: Adding input device HID 04d9:1400 (/dev/input/event2) [ 898.978] (**) HID 04d9:1400: Applying InputClass "evdev keyboard catchall" [ 898.978] (II) systemd-logind: got fd for /dev/input/event2 13:66 fd 30 paused 0 [ 898.978] (II) Using input driver 'evdev' for 'HID 04d9:1400' [ 898.978] (**) HID 04d9:1400: always reports core events [ 898.978] (**) evdev: HID 04d9:1400: Device: "/dev/input/event2" [ 898.978] (--) evdev: HID 04d9:1400: Vendor 0x4d9 Product 0x1400 [ 898.978] (--) evdev: HID 04d9:1400: Found keys [ 898.978] (II) evdev: HID 04d9:1400: Configuring as keyboard [ 898.978] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1.1/2-1.1.1.1/2-1.1.1.1:1.0/0003:04D9:1400.0003/input/input4/event2" [ 898.978] (II) XINPUT: Adding extended input device "HID 04d9:1400" (type: KEYBOARD, id 8) [ 898.979] (**) Option "xkb_rules" "evdev" [ 898.979] (II) config/udev: Adding input device HID 04d9:1400 (/dev/input/event3) [ 898.979] (**) HID 04d9:1400: Applying InputClass "evdev pointer catchall" [ 898.979] (**) HID 04d9:1400: Applying InputClass "evdev keyboard catchall" [ 898.979] (II) systemd-logind: got fd for /dev/input/event3 13:67 fd 31 paused 0 [ 898.979] (II) Using input driver 'evdev' for 'HID 04d9:1400' [ 898.979] (**) HID 04d9:1400: always reports core events [ 898.979] (**) evdev: HID 04d9:1400: Device: "/dev/input/event3" [ 898.980] (--) evdev: HID 04d9:1400: Vendor 0x4d9 Product 0x1400 [ 898.980] (--) evdev: HID 04d9:1400: Found 9 mouse buttons [ 898.980] (--) evdev: HID 04d9:1400: Found scroll wheel(s) [ 898.980] (--) evdev: HID 04d9:1400: Found relative axes [ 898.980] (--) evdev: HID 04d9:1400: Found x and y relative axes [ 898.980] (--) evdev: HID 04d9:1400: Found keys [ 898.980] (II) evdev: HID 04d9:1400: Configuring as mouse [ 898.980] (II) evdev: HID 04d9:1400: Configuring as keyboard [ 898.980] (II) evdev: HID 04d9:1400: Adding scrollwheel support [ 898.980] (**) evdev: HID 04d9:1400: YAxisMapping: buttons 4 and 5 [ 898.980] (**) evdev: HID 04d9:1400: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 [ 898.980] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1.1/2-1.1.1.1/2-1.1.1.1:1.1/0003:04D9:1400.0004/input/input5/event3" [ 898.980] (II) XINPUT: Adding extended input device "HID 04d9:1400" (type: KEYBOARD, id 9) [ 898.980] (**) Option "xkb_rules" "evdev" [ 898.980] (II) evdev: HID 04d9:1400: initialized for relative axes. [ 898.980] (**) HID 04d9:1400: (accel) keeping acceleration scheme 1 [ 898.980] (**) HID 04d9:1400: (accel) acceleration profile 0 [ 898.980] (**) HID 04d9:1400: (accel) acceleration factor: 2.000 [ 898.980] (**) HID 04d9:1400: (accel) acceleration threshold: 4 [ 898.980] (II) config/udev: Adding input device HID 04d9:1400 (/dev/input/mouse0) [ 898.980] (II) No input driver specified, ignoring this device. [ 898.980] (II) This device may have been added with another device file. [ 898.981] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/event4) [ 898.981] (**) Logitech USB-PS/2 Optical Mouse: Applying InputClass "evdev pointer catchall" [ 899.033] (II) systemd-logind: got fd for /dev/input/event4 13:68 fd 32 paused 0 [ 899.033] (II) Using input driver 'evdev' for 'Logitech USB-PS/2 Optical Mouse' [ 899.033] (**) Logitech USB-PS/2 Optical Mouse: always reports core events [ 899.033] (**) evdev: Logitech USB-PS/2 Optical Mouse: Device: "/dev/input/event4" [ 899.033] (--) evdev: Logitech USB-PS/2 Optical Mouse: Vendor 0x46d Product 0xc01e [ 899.033] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found 12 mouse buttons [ 899.033] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found scroll wheel(s) [ 899.033] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found relative axes [ 899.033] (--) evdev: Logitech USB-PS/2 Optical Mouse: Found x and y relative axes [ 899.033] (II) evdev: Logitech USB-PS/2 Optical Mouse: Configuring as mouse [ 899.033] (II) evdev: Logitech USB-PS/2 Optical Mouse: Adding scrollwheel support [ 899.033] (**) evdev: Logitech USB-PS/2 Optical Mouse: YAxisMapping: buttons 4 and 5 [ 899.033] (**) evdev: Logitech USB-PS/2 Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 [ 899.033] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.1/2-1.1.1/2-1.1.1.4/2-1.1.1.4:1.0/0003:046D:C01E.0005/input/input6/event4" [ 899.033] (II) XINPUT: Adding extended input device "Logitech USB-PS/2 Optical Mouse" (type: MOUSE, id 10) [ 899.033] (II) evdev: Logitech USB-PS/2 Optical Mouse: initialized for relative axes. [ 899.033] (**) Logitech USB-PS/2 Optical Mouse: (accel) keeping acceleration scheme 1 [ 899.033] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration profile 0 [ 899.033] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration factor: 2.000 [ 899.033] (**) Logitech USB-PS/2 Optical Mouse: (accel) acceleration threshold: 4 [ 899.033] (II) config/udev: Adding input device Logitech USB-PS/2 Optical Mouse (/dev/input/mouse1) [ 899.033] (II) No input driver specified, ignoring this device. [ 899.033] (II) This device may have been added with another device file. [ 899.034] (II) config/udev: Adding input device HID 0b38:0010 (/dev/input/event0) [ 899.034] (**) HID 0b38:0010: Applying InputClass "evdev keyboard catchall" [ 899.034] (II) systemd-logind: got fd for /dev/input/event0 13:64 fd 33 paused 0 [ 899.034] (II) Using input driver 'evdev' for 'HID 0b38:0010' [ 899.034] (**) HID 0b38:0010: always reports core events [ 899.034] (**) evdev: HID 0b38:0010: Device: "/dev/input/event0" [ 899.034] (--) evdev: HID 0b38:0010: Vendor 0xb38 Product 0x10 [ 899.034] (--) evdev: HID 0b38:0010: Found keys [ 899.034] (II) evdev: HID 0b38:0010: Configuring as keyboard [ 899.034] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.0/0003:0B38:0010.0001/input/input2/event0" [ 899.034] (II) XINPUT: Adding extended input device "HID 0b38:0010" (type: KEYBOARD, id 11) [ 899.034] (**) Option "xkb_rules" "evdev" [ 899.035] (II) config/udev: Adding input device HID 0b38:0010 (/dev/input/event1) [ 899.035] (**) HID 0b38:0010: Applying InputClass "evdev keyboard catchall" [ 899.035] (II) systemd-logind: got fd for /dev/input/event1 13:65 fd 34 paused 0 [ 899.035] (II) Using input driver 'evdev' for 'HID 0b38:0010' [ 899.035] (**) HID 0b38:0010: always reports core events [ 899.035] (**) evdev: HID 0b38:0010: Device: "/dev/input/event1" [ 899.035] (--) evdev: HID 0b38:0010: Vendor 0xb38 Product 0x10 [ 899.035] (--) evdev: HID 0b38:0010: Found 1 mouse buttons [ 899.035] (--) evdev: HID 0b38:0010: Found scroll wheel(s) [ 899.035] (--) evdev: HID 0b38:0010: Found relative axes [ 899.035] (II) evdev: HID 0b38:0010: Forcing relative x/y axes to exist. [ 899.035] (--) evdev: HID 0b38:0010: Found absolute axes [ 899.035] (II) evdev: HID 0b38:0010: Forcing absolute x/y axes to exist. [ 899.035] (--) evdev: HID 0b38:0010: Found keys [ 899.035] (II) evdev: HID 0b38:0010: Configuring as mouse [ 899.035] (II) evdev: HID 0b38:0010: Configuring as keyboard [ 899.035] (II) evdev: HID 0b38:0010: Adding scrollwheel support [ 899.035] (**) evdev: HID 0b38:0010: YAxisMapping: buttons 4 and 5 [ 899.035] (**) evdev: HID 0b38:0010: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200 [ 899.035] (**) Option "config_info" "udev:/sys/devices/pci0000:00/0000:00:1d.0/usb2/2-1/2-1.6/2-1.6:1.1/0003:0B38:0010.0002/input/input3/event1" [ 899.035] (II) XINPUT: Adding extended input device "HID 0b38:0010" (type: KEYBOARD, id 12) [ 899.035] (**) Option "xkb_rules" "evdev" [ 899.035] (II) evdev: HID 0b38:0010: initialized for relative axes. [ 899.035] (WW) evdev: HID 0b38:0010: ignoring absolute axes. [ 899.036] (**) HID 0b38:0010: (accel) keeping acceleration scheme 1 [ 899.036] (**) HID 0b38:0010: (accel) acceleration profile 0 [ 899.036] (**) HID 0b38:0010: (accel) acceleration factor: 2.000 [ 899.036] (**) HID 0b38:0010: (accel) acceleration threshold: 4 [ 899.036] (II) config/udev: Adding input device PC Speaker (/dev/input/event12) [ 899.036] (II) No input driver specified, ignoring this device. [ 899.036] (II) This device may have been added with another device file. [ 900.077] (II) NVIDIA(GPU-0): Display (HP vs17 (CRT-0)) does not support NVIDIA 3D Vision [ 900.077] (II) NVIDIA(GPU-0): stereo. [ 900.078] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display [ 900.078] (**) NVIDIA(0): device HP vs17 (CRT-0) (Using EDID frequencies has been [ 900.078] (**) NVIDIA(0): enabled on all display devices.) [ 900.079] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-1 [ 900.079] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display [ 900.079] (**) NVIDIA(0): device CRT-1 (Using EDID frequencies has been enabled on [ 900.079] (**) NVIDIA(0): all display devices.) [ 900.316] (II) NVIDIA(GPU-0): Display (HP vs17 (CRT-0)) does not support NVIDIA 3D Vision [ 900.316] (II) NVIDIA(GPU-0): stereo. [ 900.316] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display [ 900.316] (**) NVIDIA(0): device HP vs17 (CRT-0) (Using EDID frequencies has been [ 900.316] (**) NVIDIA(0): enabled on all display devices.) [ 900.317] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-1 [ 900.318] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display [ 900.318] (**) NVIDIA(0): device CRT-1 (Using EDID frequencies has been enabled on [ 900.318] (**) NVIDIA(0): all display devices.) [ 3635.626] (II) NVIDIA(0): Setting mode "VGA-0: 1280x1024 @1280x1024 +0+0, DVI-I-0: nvidia-auto-select @1280x1024 +0+0" [ 3635.885] (II) NVIDIA(GPU-0): Display (HP vs17 (CRT-0)) does not support NVIDIA 3D Vision [ 3635.885] (II) NVIDIA(GPU-0): stereo. [ 3635.885] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display [ 3635.885] (**) NVIDIA(0): device HP vs17 (CRT-0) (Using EDID frequencies has been [ 3635.885] (**) NVIDIA(0): enabled on all display devices.) [ 3635.887] (WW) NVIDIA(GPU-0): Unable to read EDID for display device CRT-1 [ 3635.887] (**) NVIDIA(0): Using HorizSync/VertRefresh ranges from the EDID for display [ 3635.887] (**) NVIDIA(0): device CRT-1 (Using EDID frequencies has been enabled on [ 3635.887] (**) NVIDIA(0): all display devices.)
_______________________________________________ [email protected]: X.Org support Archives: http://lists.freedesktop.org/archives/xorg Info: https://lists.x.org/mailman/listinfo/xorg Your subscription address: %(user_address)s
