Displaying 8 results from an estimated 8 matches for "set_bitmap".
2005 Sep 11
6
Patch to wxNotebook.rbw
Patch to the notebook example to remove the call to the deprecated
NotebookSizer. It appears to work just fine without the sizer.
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2007 Jul 04
0
[1103] trunk/wxruby2: Added 2.8 methods to StaticBitmap & document them; cleanup header file
...icBitmap#create":#StaticBitmap_create
</span><span class="cx"> * "StaticBitmap#get_bitmap":#StaticBitmap_getbitmap
</span><ins>+* "StaticIcon#get_icon":#StaticBitmap_geticon
</ins><span class="cx"> * "StaticBitmap#set_bitmap":#StaticBitmap_setbitmap
</span><ins>+* "StaticIcon#set_icon":#StaticBitmap_seticon
</ins><span class="cx">
</span><span class="cx"> </div>
</span><span class="cx">
</span><span class="...
2005 Jun 11
5
[PATCH] Fixing iopl and ioperm
With this patch, x86 and x86-64 share ioport.c, fixing LTP iopl and
ioperm testcase failures (on both). We found an iopl testcase failing
even on x86 xenlinux.
Now x86-64 xenlinux should have the same results regarding the LTP
testcases (as far as we tested).
Signed-off-by: Li B Xin <li.b.xin@intel.com>
Signed-off-by: Jun Nakajima <jun.nakajima@intel.com>
Jun
---
Intel Open Source
2006 Sep 14
2
Patch to fix ArtProvider and ArtProvider sample
These patches better implement ArtProvider and add the demo for it. I
also expanded the bigdemo window a little bit. I really think we should
go larger but I suppose there might be some people at 800x600 still.
Note that creating your own art provider still doesn''t quite work
correctly. I didn''t have time to get into that.
The RubyConstants.i.patch file looks weird. Not
2007 Jan 06
0
[839] trunk/wxruby2/doc/textile/bitmapdataobject.txtl: Add methods listing; remove virtual function refs
...t;/del><ins>+<div id="methods">
</ins><span class="cx">
</span><del>-"DataObjectSimple":dataobjectsimple.html
</del><ins>+* "BitmapDataObject#get_bitmap":#BitmapDataObject_getbitmap
+* "BitmapDataObject#set_bitmap":#BitmapDataObject_setbitmap
</ins><span class="cx">
</span><del>-"DataObject":dataobject.html
</del><ins>+</div>
</ins><span class="cx">
</span><span class="cx"> h2. See also
</span&...
2007 May 29
0
Fw: [RFC] makedumpfile: xen extraction
...+ * - anonymous (_domain == 0), or
+ * - xen heap area, or
+ * - selected domain page
+ */
+ if (_domain == 0 ||
+ (info->xen_heap_start <= pfn && pfn < info->xen_heap_end) ||
+ ((count_info & 0xffff) && is_select_domain(info, _domain))) {
+ set_bitmap(bm2.buf, pfn%PFN_BUFBITMAP, 1);
+ }
+ }
+ }
+
+ /*
+ * Write the remainder of the bitmap.
+ */
+ remain_size = info->len_bitmap - bm2.offset;
+ bm2.buf_size = remain_size;
+ if (!write_cache_bufsz(&bm2))
+ goto out;
+
+ ret = TRUE;
+out:
+ if (bm2.buf != NULL)
+ free(bm2.buf);
+
+ ret...
2007 Apr 18
2
[PATCH 1/3] Paravirtualization: Kernel Ring Cleanups
Hi all,
I've been looking at finding common ground between the VMI, Xen and
other paravirtualization approaches, and after some discussion, we're
getting somewhere.
These first two patches are the fundamentals, stolen mainly from the
VMI patches: removing assumptions about the kernel running in ring 0,
and macro-izing all the obvious para-virtualize-needing insns. The
third patch is
2007 Apr 18
2
[PATCH 1/3] Paravirtualization: Kernel Ring Cleanups
Hi all,
I've been looking at finding common ground between the VMI, Xen and
other paravirtualization approaches, and after some discussion, we're
getting somewhere.
These first two patches are the fundamentals, stolen mainly from the
VMI patches: removing assumptions about the kernel running in ring 0,
and macro-izing all the obvious para-virtualize-needing insns. The
third patch is