search for: set_cursor

Displaying 13 results from an estimated 13 matches for "set_cursor".

2010 Sep 17
1
General protection fault
...200/0x300 [fbcon] Sep 17 15:26:18 box6 kernel: [ 1948.826122] [<ffffffffa0195338>] fbcon_cursor+0x1d8/0x340 [fbcon] Sep 17 15:26:18 box6 kernel: [ 1948.826126] [<ffffffffa0137ae0>] ? bit_cursor+0x0/0x6b8 [bitblit] Sep 17 15:26:18 box6 kernel: [ 1948.826130] [<ffffffff8133fc7c>] set_cursor+0x6c/0x90 Sep 17 15:26:18 box6 kernel: [ 1948.826133] [<ffffffff81342b31>] redraw_screen+0x1e1/0x220 Sep 17 15:26:18 box6 kernel: [ 1948.826138] [<ffffffffa0196446>] fbcon_blank+0x156/0x250 [fbcon] Sep 17 15:26:18 box6 kernel: [ 1948.826145] [<ffffffff810397a9>] ? default_spin_...
2007 Apr 28
0
[978] branches/wxruby2/wxwidgets_282/samples/bigdemo/wxScrolledWindow.rbw: Fix crazy crashers on MSW; fix scrolling/drawing position; safe path to bitmap
...007-04-28 23:54:46 UTC (rev 978) </span><span class="lines">@@ -26,7 +26,8 @@ </span><span class="cx"> set_background_colour(Wx::WHITE) </span><span class="cx"> </span><span class="cx"> set_cursor(Wx::Cursor.new(Wx::CURSOR_PENCIL)) </span><del>- @bmp = Wx::Bitmap.new("./icons/test2.xpm") </del><ins>+ bmp_file = File.join(File.dirname(__FILE__), ''icons'', ''test2.xpm'') + @bmp = Wx::Bitmap.new(bmp_file) &l...
2007 Jun 26
0
[1082] trunk/wxruby2/doc/textile/hyperlinkctrl.txtl: Added HyperlinkCtrl and HyperlinkEvent documentation
...all to +"LaunchDefaultBrowser":launchdefaultbrowser.html is done with the +hyperlink''s URL. + +Note that standard "Window":window.html functions like "set_background_colour":#HyperlinkCtrl_setbackgroundcolour, "set_font":#HyperlinkCtrl_setfont, "set_cursor":#HyperlinkCtrl_setcursor, "set_label":#HyperlinkCtrl_setlabel can be used to customize appearance of the hyperlink. + + +h2. Derived from + +"Control":control.html + +"Window":window.html + +"EvtHandler":evthandler.html + +"Object":object.html...
2007 Apr 30
0
[997] branches/wxruby2/wxwidgets_282: Window - 2.6 -> 2.8 API, new methods and deprecations; update doc
...ient_size":#Window_setclientsize </span><ins>+* "Window#set_constraints":#Window_setconstraints </ins><span class="cx"> * "Window#set_containing_sizer":#Window_setcontainingsizer </span><span class="cx"> * "Window#set_cursor":#Window_setcursor </span><del>-* "Window#set_constraints":#Window_setconstraints </del><ins>+* "Window#set_drop_target":#Window_setdroptarget </ins><span class="cx"> * "Window#set_initial_best_size":#Window_setinitial...
2007 Mar 28
0
[923] branches/wxruby2/wxwidgets_282: Changes 2.6 -> 2.8 Wx API; remove unsupported methods and examples from doc
...gt;-Pointers: - -*STANDARD_CURSOR - -HOURGLASS_CURSOR\\ -CROSS_CURSOR* - </del><span class="cx"> h2. See also </span><span class="cx"> </span><span class="cx"> "Bitmap":bitmap.html, "Icon":icon.html, "Window#set_cursor":window.html#Window_setcursor, "::SetCursor":setcursor.html </span><span class="lines">@@ -44,40 +42,17 @@ </span><span class="cx"> h2. Methods </span><span class="cx"> </span><span class="cx"> *...
2019 May 20
5
[PATCH 1/2] drm: Add drm_gem_vram_{pin/unpin}_reserved() and convert mgag200
On Thu, May 16, 2019 at 06:27:45PM +0200, Thomas Zimmermann wrote: > The new interfaces drm_gem_vram_{pin/unpin}_reserved() are variants of the > GEM VRAM pin/unpin functions that do not reserve the BO during validation. > The mgag200 driver requires this behavior for its cursor handling. The > patch also converts the driver to use the new interfaces. > > Signed-off-by: Thomas
2019 May 20
5
[PATCH 1/2] drm: Add drm_gem_vram_{pin/unpin}_reserved() and convert mgag200
On Thu, May 16, 2019 at 06:27:45PM +0200, Thomas Zimmermann wrote: > The new interfaces drm_gem_vram_{pin/unpin}_reserved() are variants of the > GEM VRAM pin/unpin functions that do not reserve the BO during validation. > The mgag200 driver requires this behavior for its cursor handling. The > patch also converts the driver to use the new interfaces. > > Signed-off-by: Thomas
2011 Apr 29
0
Wine release 1.3.19
...nimated cursors/icons from resources. wininet: Use an accessor function instead of directly accessing the X509_STORE_CTX structure. winhttp: Use an accessor function instead of directly accessing the X509_STORE_CTX structure. server: Also return the previous cursor position in the set_cursor request. user32: Only call the driver when the cursor position has really changed. user32: Don't start menu tracking when the owner window is invalid. winex11: Clip out the top-level windows when repainting the desktop. winetest: Cowardly refuse to submit results that ha...
2006 Dec 03
0
[778] trunk/wxruby2: Remove broken and deprecated LayoutConstraints, update samples & docs
...t;<span class="cx"> </span><del>- Myset_client_data("listbox", @m_listbox) - Myset_client_data("listbox", @m_listboxSorted) </del><span class="cx"> </span><span class="cx"> @m_listbox.set_cursor(CROSS_CURSOR) </span><span class="cx"> </span><span class="lines">@@ -281,9 +262,6 @@ </span><span class="cx"> @m_choiceSorted = Choice.new( panel, ID_CHOICE_SORTED, Point.new(10,70), Size.new(120,-1), </span><span...
2011 Jan 20
1
[PATCH] change acquire/release_console_sem() to console_lock/unlock()
...lock(); break; case TIOCL_BLANKEDSCREEN: ret = console_blanked; @@ -2790,11 +2790,11 @@ static void con_flush_chars(struct tty_struct *tty) return; /* if we race with con_close(), vt may be null */ - acquire_console_sem(); + console_lock(); vc = tty->driver_data; if (vc) set_cursor(vc); - release_console_sem(); + console_unlock(); } /* @@ -2805,7 +2805,7 @@ static int con_open(struct tty_struct *tty, struct file *filp) unsigned int currcons = tty->index; int ret = 0; - acquire_console_sem(); + console_lock(); if (tty->driver_data == NULL) { ret = vc_alloc...
2011 Jan 20
1
[PATCH] change acquire/release_console_sem() to console_lock/unlock()
...lock(); break; case TIOCL_BLANKEDSCREEN: ret = console_blanked; @@ -2790,11 +2790,11 @@ static void con_flush_chars(struct tty_struct *tty) return; /* if we race with con_close(), vt may be null */ - acquire_console_sem(); + console_lock(); vc = tty->driver_data; if (vc) set_cursor(vc); - release_console_sem(); + console_unlock(); } /* @@ -2805,7 +2805,7 @@ static int con_open(struct tty_struct *tty, struct file *filp) unsigned int currcons = tty->index; int ret = 0; - acquire_console_sem(); + console_lock(); if (tty->driver_data == NULL) { ret = vc_alloc...
2011 Jan 20
1
[PATCH] change acquire/release_console_sem() to console_lock/unlock()
...lock(); break; case TIOCL_BLANKEDSCREEN: ret = console_blanked; @@ -2790,11 +2790,11 @@ static void con_flush_chars(struct tty_struct *tty) return; /* if we race with con_close(), vt may be null */ - acquire_console_sem(); + console_lock(); vc = tty->driver_data; if (vc) set_cursor(vc); - release_console_sem(); + console_unlock(); } /* @@ -2805,7 +2805,7 @@ static int con_open(struct tty_struct *tty, struct file *filp) unsigned int currcons = tty->index; int ret = 0; - acquire_console_sem(); + console_lock(); if (tty->driver_data == NULL) { ret = vc_alloc...
2012 Dec 12
43
[PATCH 00/37] [RFC] revamped modeset locking
Hi all, First thing first: It works, I now no longer have a few dropped frames every 10s on my testbox here with the pageflip i-g-t tests. Random notes: - New design has per-crtc locks to protect the crtc input-side (pageflip, cursor) for r/w and the output state of the crtc (mode, dpms) as read-only. It also required completely revamped fb lifecycle management, those are now refcounted