10
votes
3answers
375 views
Why is DoubleBuffered disabled by default?
After creating a new form, I usually perform this ritual:
Change the name into something meaningful;
Type a Caption;
Change the position property (DefaultPosOnly is hardly ever w …
6
votes
9answers
2k views
How to double buffer .NET controls on a form?
How can i set the protected DoubleBuffered property of the controls on a form that are suffering from flicker?
4
votes
8answers
1k views
Winforms: SuspendLayout/ResumeLayout is not enough?
Hi, I have a library of a few "custom controls". Essentially we have our own buttons, rounder corner panels, and a few groupboxes with some custom paint. Despite the "math" in the …
3
votes
2answers
88 views
JOGL Double Buffering
What is eligible way to implement double buffering in JOGL (Java OpenGL)?
I am trying to do that by the following code —
...
/** Creating canvas. */
GLCapabilities capabilit …
3
votes
3answers
1k views
How do i enable double-buffering of a control using C# (Window forms)?
How do i enable double-buffering of a control using C# (Window forms)?
I have a panelcontrol which i am drawing stuff into and also an owner drawn tabcontrol. Both suffer from fli …
2
votes
5answers
167 views
How to use double buffer in this case ?
Let's say i have three control A, B, C. They are all inherited from CDialog,
A is a main dialog , A contains B, and B contains C.
and each time i use mouse mouse drag C, B and C wi …
2
votes
2answers
101 views
DirectX flickering video
Alright, so I wrote a custom VMR9 Allocator/Presenter which seems to work fine. However, when I attempt to copy video frames from the Allocator/Presenter surfaces into my applicat …
2
votes
3answers
1k views
Qt & double buffering - are there any neat tricks to capture pixels or manipulate the back buffer?
I'm migrating an application to Qt from MFC.
The MFC app would use GDI calls to construct the window (a graph plot, basically). It would draw to a memory bitmap back buffer, and …
2
votes
1answer
363 views
Double buffering with wxpython
I'm working on an multiplatform application with wxpython and I had flickering problems on windows, while drawing on a Panel.
I used to draw on a buffer (wx.Bitmap) during mouse mo …
2
votes
1answer
1k views
Double buffer child controls in custom control (C#)
I want to double buffer a custom control which contains buttons. I have tried various ways to double buffer the control; SetStyle, BufferedGraphicsContext, and drawing to a bitmap …
1
vote
2answers
61 views
How can I stop window rendering and later resume?
I'd like to prevent my window from being updated until I finish receiving data from the server and render it. Can I hook on the WM_PAINT event, or better still call some Win32API m …
1
vote
2answers
259 views
Flickering child windows with alpha channels
When drawing child controls containing bitmaps with per-pixel alpha channels, we are getting quite a lot of flickering whenever they need to be redrawn. The actual blending is wor …
1
vote
2answers
719 views
How do I double buffer a Panel in C#?
I have a panel that has a roulette wheel on it, and I need to double buffer the panel, so that it stops flickering. Can anyone help me out?
~T-Fox
EDIT:
Yes, I have tried that.
…
1
vote
4answers
461 views
(.NET/C#/winforms) Artifacting when drawing on a Form with Graphics
My objective is to move visual elements drawn using methods of a Graphics object across a Form with no flicker or artifacting (in .NET 3.5). I can successfully achieve flickerless …
1
vote
5answers
673 views
Problems re-drawing an image on a double-buffered control without flickering
Hello,
I know that double-buffering is an often-talked subject but no matter how much I searched and tried different approaches, I still can't get the control to re-draw itself wi …
