Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
4answers
2k 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 what users expect); ...
13
votes
10answers
11k 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?
8
votes
9answers
11k views

Winforms: SuspendLayout/ResumeLayout is not enough?

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 OnPaint methods, the ...
8
votes
1answer
1k 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 motions events and my ...
7
votes
1answer
638 views

Double Buffering with awt

Is double buffering (in java) possible with awt? Currently, I'm aware that swing should not be used with awt, so I can't use BufferStrategy and whatnot (I already have some code written in awt that I ...
5
votes
2answers
676 views

Why should I do manual double buffering?

I am working on a game in C# (either 2.0 or 3.5 havn't decided yet). The game will be played on a map with a hexagonal grid. I appreciate that the UI for this map should use double buffering (lots ...
5
votes
2answers
1k views

ControlStyles.DoubleBuffer vs. ControlStyles.OptimizedDoubleBuffer

What is the difference between ControlStyles.DoubleBuffer and ControlStyles.OptimizedDoubleBuffer? ControlStyles.DoubleBuffer does not show up in the Intellisense drop down whereas ...
4
votes
5answers
2k views

Java: how to do double-buffering in Swing?

EDIT TWO To prevent snarky comments and one-line answers missing the point: IFF it is as simple as calling setDoubleBuffered(true), then how do I get access to the current offline buffer so that I ...
4
votes
1answer
1k views

Winforms Double Buffering

I added this to my form's constructor code: this.SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.UserPaint | ControlStyles.DoubleBuffer, true); But it still shows ugly artifacts when it ...
4
votes
5answers
595 views

Double buffering C#

I'm trying to implement the following method: void Ball::DrawOn(Graphics g); The method should draw all previous locations(stored in a queue) of the ball and finally the current location. I don't ...
4
votes
6answers
864 views

Performing a pointer swap in a double-buffer multithread system

When double-buffering data that's due to be shared between threads, I've used a system where one thread reads from one buffer, one thread reads from the other buffer and reads from the first buffer. ...
4
votes
2answers
586 views

Java Panel Double Buffering

Hey everyone, wondered if anyone could point me in the right directon, i have developed a pong game and it needs double buffering due to flickering. Iv tryed some of the post on here to try and make ...
4
votes
2answers
6k 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. ...
4
votes
1answer
2k 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. These all work ...
3
votes
1answer
83 views

Doublebuffering form causes black dots at corners of text box

When I have a few text boxes on a form and set the DoubleBuffered property of the form to True, it makes the text boxes on the form have black dots at each of the corners. Here's what the corners of ...
3
votes
6answers
273 views

Despite double buffering, the ticker still flickers

Does anyone have an idea about how to get rid of flickering? I researched on SO, the web, and tried out many different things like putting TickerControl into a double buffered Panel a la Double ...
3
votes
3answers
194 views

C# Double Buffering?

I am using the COSMOS compiler to write an OS in C# (For those who dont know COSMOS converts IL code into x86 assembly) and I am making a GUI. I have made GUIs before but now i am trying to make a ...
3
votes
2answers
386 views

Java Double Buffering

I'm working on a project and I've read up as much as I can on double buffering in java. What I want to do is add a component or panel or something to my JFrame that contains the double buffered ...
3
votes
2answers
277 views

Java AWT drawImage race condition - how to use synchronized to avoid it

After many hours of debugging and analysis, I have finally managed to isolate the cause of a race condition. Solving it is another matter! To see the race condition in action, I recorded a video ...
3
votes
1answer
330 views

Does LVS_EX_DOUBLEBUFFER correctly not double buffer when running on a remote session?

One is supposed to use double buffering when running locally, but to not use double buffering when the window is on a remote session, if one wants to have the best performance of each mode. The ...
3
votes
1answer
240 views

Disable OnPaintBackground without subclassing Panel?

Is there any way to disable the erasing of a panel without subclassing Panel and overriding OnPaintBackground? I am trying to achieve a double buffering effect without subclassing Panel. I understand ...
3
votes
3answers
792 views

non-blocking SwapBuffers() with VSync=on

I am looking for a portable way to make a non-blocking SwapBuffers() even if VSync is activated. In other words, is it possible to to be notified by an event or to know the delay until the next VSync ...
3
votes
3answers
1k views

How do I do double buffering in Java2D?

I'm drawing a bunch of primitives using Java2D on the screen and I'm getting a lot of tearing/flicker. How can I enable/use double-buffering so it draws it off screen then shows the whole thing?
3
votes
3answers
5k 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 then BitBlt that to ...
3
votes
3answers
5k 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 flicker, so how to ...
2
votes
1answer
108 views

c# double buffering buttons

I've been working on one project last few months, and have one problem that I can't solve. I have a Windows form with controls on it. When user changes the controls size, app then fires sizechanged ...
2
votes
2answers
475 views

Swing/JFrame vs AWT/Frame for rendering outside the EDT

What are the principle differences between using an AWT Frame and a Swing JFrame when implementing your own rendering and not using standard Java GUI components? This is a follow on from a previous ...
2
votes
1answer
830 views

Double buffering in Java on Android with canvas and surfaceview

How does one go about doing this? Could somebody give me an outline? From what I've found online, it seems like in my run() function: create a bitmap create a canvas and attach it to the bitmap ...
2
votes
1answer
98 views

Need help working with self.MemoryDC in wxPython

I'm trying to make a custom text widget that is double buffered (In order to avoid flicker). However, I'd like to be able to do a few things. Yet, I'm unsure of the exact methods I should use. The ...
2
votes
2answers
1k views

How to eliminate the flicker on the right edge of TPaintBox (for example when resizing)

Summarization: Say that I have a TForm and two panels. The panels are aligned alTop and alClient. The alClient panel contains a TPaintBox, whose OnPaint involve drawing codes. The default value of ...
2
votes
1answer
348 views

Understanding the behavior of IDirect3DDevice9::Present when it blocks for vsync

I'm developing a scientific application that has to estimate (as best as possible) the time difference between an object getting drawn in the video back buffer and the point at which that object ...
2
votes
1answer
426 views

Help with double-buffering

I have created an animation which works fine, but it flicks. I need help with double-buffering since I don't know anything about it. This is the code in my onPaint(): VOID onPaint(HDC hdc) { ...
2
votes
3answers
499 views

Double buffering with C# has negative effect

I have written the following simple program, which draws lines on the screen every 100 milliseconds (triggered by timer1). I noticed that the drawing flickers a bit (that is, the window is not always ...
2
votes
5answers
797 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 will move together. ...
2
votes
2answers
635 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 application surfaces, the ...
2
votes
3answers
3k views

Why does the DoubleBuffered property default to false on a DataGridView and why is it protected?

We had a performance issue with DataGridViews where the redraw was horridly slow and found the solution Here to create a derived type and enable double buffering on the control. (Derived type is ...
2
votes
5answers
5k views

What is the best way to do a flicker-free animated C# custom control?

I am currently creating a custom control that needs to handle animation in a C# project. It is basically a listbox that contains a fixed number of elements that are subject to move. An element ...
1
vote
1answer
51 views

Java Double Buffering - Only Every Other Frame Drawn

I'm trying to develop a full-screen application, but I'm having issues with double buffers. public void create () { window = new JWindow (); window.setIgnoreRepaint (true); ...
1
vote
1answer
95 views

Am I not doing correctly or understanding double buffering on Android?

I have a function @Override public void run() { while(running && (!eof)){ if(surfaceHolder.getSurface().isValid()){ Canvas canvas = surfaceHolder.lockCanvas(); ...
1
vote
3answers
423 views

Java double buffer using an override for update method throws stack overflow

I am trying to achieve double buffering of my game in Java by overriding the update method for my JPanel, I do all the usual code etc and still it won't work, it throws a stack overflow error, below ...
1
vote
3answers
508 views

C#, double buffer in WinForms?

private void button3_Click(object sender, EventArgs e) { this.DoubleBuffered = true; for (int i = 0; i < 350; i++) { using (Graphics g ...
1
vote
1answer
375 views

Double Buffer a custom control in the Compact Framework

I have a custom control that inherits from Panel. I end up putting several DataGrids and Labels on this panel. When it gets too long it auto scrolls for me. I really need the scrolling because it ...
1
vote
1answer
174 views

Bad flickering problem with Allegro

I have a simple Allegro window which is experiencing bad flickering. The system I have right now is doubled buffered, which is why I can't figure out why it's happening. BITMAP *buffer = ...
1
vote
2answers
272 views

Why is the paint() method not executing update() or paint() methods?

I'm having this problem where the paint() or update() methods in a class isn't getting called when I execute repaint(). Here's the code: public class BufferedDisplay extends Canvas implements ...
1
vote
1answer
267 views

A problem with overriding OnPaint when DoubleBuffered set to true

I have created a custom control which derives from Panel. I use it to display an Image using BackgroundImage property. I override the OnClick method and set isSelected to true then call Invalidate ...
1
vote
3answers
1k views

DoubleBuffering in Java

I'm having some trouble implementing DoubleBuffer into my program. Before you faint from the wall of text, you should know that a lot of it is there just in case you need to know. The actual place ...
1
vote
2answers
452 views

Is Double-buffering required with Desktop Composition enabled?

Is double-buffering still required when Desktop Composition is enabled? In Microsoft's Application Compatibility Guide: Graphical Device Interface (GDI) Prior to Windows Vista and Windows ...
1
vote
3answers
375 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 method to prevent the ...
1
vote
3answers
2k views

Double buffered ListBox

I have a CheckedListBox (WinForms) control (which inherits from ListBox; googling shows that the problem is with ListBox) that is anchored to all four sides of its form. When the form is resized, the ...
1
vote
1answer
543 views

WinForms - Does the Form.DoubleBuffered property influence controls placed on that form?

Form has the DoubleBuffered property (bool, inherited from Control). If this is set to true, are all controls placed on the form drawn to screen in a double buffered fashion by virtue of being on the ...

1 2