Displaying 5 results from an estimated 5 matches for "buffereddc".
Did you mean:
buffered
2007 Nov 23
0
[ wxruby-Bugs-15849 ] BufferedDC not exposed in Windows?
...849, was opened at 2007-11-22 21:21
You can respond by visiting:
http://rubyforge.org/tracker/?func=detail&atid=218&aid=15849&group_id=35
Category: Missing API call
Group: current
Status: Open
Resolution: None
Priority: 3
Submitted By: Nobody (None)
Assigned to: Nobody (None)
Summary: BufferedDC not exposed in Windows?
Initial Comment:
Windows XP SP2
Ruby 1.8.6-25
wxRuby gem 1.9.2 (i386-mswin32)
Call to Wx::BufferedDC.new fails -
_buffer_dc = Wx::BufferedDC.new(_client_dc, @buffer)
returns "uninitialized constant Wxruby2::BufferedDC (NameError)"
which seems to contradic...
2007 Dec 01
5
Tearing in my buffered animation test script...
OK, I have a basic blit demo working (thanks to Alex Fenton for his
reply, which I finally saw).
However, there''s a great deal of "tearing" on the screen - flickering
grey lines in the black background. It looks like the blit isn''t
always complete when the screen refreshes.
Can anyone look at this and tell me what I might be doing wrong? Any
help would be most
2007 Apr 29
0
[993] branches/wxruby2/wxwidgets_282/samples/bigdemo/wxScrolledWindow.rbw: Use ClientDC via Window#paint object
...if event.left_is_down() and @drawing
</span><del>- if $BUFFERED
- # If doing buffered drawing, create the buffered DC, giving it
- # it a real DC to blit to when done.
- cdc = Wx::ClientDC.new(self)
- dc = Wx::BufferedDC.new(cdc, @buffer)
- else
- dc = Wx::ClientDC.new(self)
- end
</del><ins>+# if $BUFFERED
+# # If doing buffered drawing, create the buffered DC, giving it
+# # it a real DC to blit to when done.
+#...
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
...n class="cx"> # it a real DC to blit to when done.
</span><span class="cx"> cdc = Wx::ClientDC.new(self)
</span><del>- prepare_dc(cdc)
</del><span class="cx"> dc = Wx::BufferedDC.new(cdc, @buffer)
</span><span class="cx"> else
</span><span class="cx"> dc = Wx::ClientDC.new(self)
</span><del>- prepare_dc(dc)
</del><span class="cx"> end
</spa...
2007 Apr 30
0
[997] branches/wxruby2/wxwidgets_282: Window - 2.6 -> 2.8 API, new methods and deprecations; update doc
...ffered). Window#is_double_buffered
+
+ Boolean *is_double_buffered*()
+
+Returns if the window contents is double-buffered by the system, i.e. if
+any drawing done on the window is really done on a temporary backing surface
+and transferred to the screen all at once later.
+
+h4. See also
+
+"BufferedDC":buffereddc.html
+
+
</ins><span class="cx"> h3(#Window_isenabled). Window#is_enabled
</span><span class="cx">
</span><span class="cx"> Boolean *is_enabled*()
</span><span class="lines">@@ -1357,6 +1482,1...