The double-buffering tag has no wiki summary.
1
vote
1answer
22 views
Double buffering seems choppy
I am trying to implement double buffering for a game, but I am not sure if I am doing it correctly.
I am calling this.repaint() in my main game loop, which then should do this:
@Override
public void ...
2
votes
0answers
31 views
Using 2 different colors on the same paint, for the same canvas cause flickering
This is the code i'm using, it is running the heavy part on the Background, and it draws a growing circle, and while it is growing, the text that is inside the circle fades out, the problem is that ...
0
votes
1answer
80 views
Auto Moving Image with a close Button and button event in JAVA
i have this code. in this code an image is moving left to right with moveImage method and moves right to left with moveimg method in the code. what i want now is to work a button event. there is a ...
0
votes
1answer
54 views
Double buffering in Jython
recently I started learning Jython and now I have rather simply problem. I would like to improve quality of my animation. Unfortunately I don't know how to add double buffering to my applet . Could ...
0
votes
2answers
102 views
How to fix bad Double-Buffering [closed]
I tried following a double buffering tutorial, and I really don't know what I did wrong. It works before then before I did the tutorial, but there is still and occasional flicker here and there. I ...
0
votes
1answer
94 views
Double Buffering with vsync (in sync with refresh rate of screen) - C# windows forms
I've been trying to update the BMP of a PictureBox 60 times per second with a line pattern that changes for every update. What's happening is the image is being partially updated in between screen ...
2
votes
1answer
117 views
Why does OpenGL double-buffering seem to be inconsistent performance-wise?
I'm making a simple graphical app on OSX. I just started monitoring the frame rate by checking the difference in system time between frames. It seems to be hanging a bit every few frames.
The app ...
1
vote
0answers
36 views
backbuffer VolatileImage resize
I have a small issue regarding my backbuffer in my java applet. Currently i haven't considered the resize of my applet on runtime. Therefore the panels get resized, while my backbuffer keeps its ...
1
vote
0answers
127 views
GDI+ flickers even with double-buffering
I'm trying to move a small image from the left side to the screen to the right side.
I set the styles for the usercontrol to:
this.SetStyle(ControlStyles.Opaque, true);
...
1
vote
0answers
76 views
BufferedGraphics flicker
I have tried to implement custom double buffering, but it causes flicker.
This is code in control (custom control that inherits from Control) constructor:
bufferContext = new ...
1
vote
2answers
83 views
Simple custom painting mistake
I just started coding again and I guess I forgot how to double buffer. This is the code I have now and I'm not sure what I am missing. When I start it there is just a white screen, no oval.
What is ...
1
vote
2answers
132 views
Double buffering on lpc1788
I'm facing a great concern. I am currently involved in a sandwich course and I am learning on my own on how to develop software on embedded system - as it happens, on the open1788 board.
I planned on ...
0
votes
0answers
103 views
Java Nullpointer at javax.swing.RepaintManager.getVolatileOffscreenBuffer
Exception in thread "Thread-3" java.lang.NullPointerException
at javax.swing.RepaintManager.getVolatileOffscreenBuffer(RepaintManager.java:965)
at ...
0
votes
0answers
156 views
VB.NET Usercontrol Buffered Graphics
I wanted to create a basic usercontrol that has a buffered graphics.
But something is not right, it stops at the line
Using gr As Graphics = Graphics.FromImage(m_Buffer)
I even managed to crash ...
1
vote
0answers
163 views
WPF ElementHost fails to paint with doublebuffering enabled
Hi I am experiencing a similiar problem to this Question.
Whats different for me is that I am using in my WinForms-MainForm the "CreateParams-Method" to force doublebuffering. Code for this is ...
1
vote
1answer
146 views
getGraphics() prevents my game from starting [closed]
I'm learning about double buffering and the book I got from my teacher tells me to write what I have written. But when java tries to get the graphics object from the image it crashes.
frame = Image
...
2
votes
0answers
169 views
Java: double buffering graphics and menubar not working together
i still have to learn a lot about programming (java), i have mostly used Graphics till now. I tried making a menubar, and it worked. But i have problems using Graphics and JMenubar together. First i ...
0
votes
1answer
426 views
stop applet flickering with double buffering Java Applet
sorry to keep asking questions about my program but i think i'm nearly there and i'm teaching myself java so please bear with me. I'm creating an applet that moves sheep object across the screen in a ...
4
votes
2answers
280 views
Is it possible to eliminate flickering entirely when resizing a window?
Normally, even when using double buffering, when resizing a window, it seems that it's inevitable that the flickering will happen.
Step 1, the original window.
Step 2, the window is resized, ...
2
votes
0answers
69 views
Flickering xscreensaver
Maybe this question will whet your appetite.
I have been extensively editing the Fuzzyflakes xscreensaver. I have been able to give it a background but it keeps flickering. I have tried to put in ...
-1
votes
1answer
285 views
flicker on tab control - WIN32
I have a WIN32 application. Its main window is hwndMain, one of its child is hwndView. There is one tab control hwndTab on hwndView.
When I resize hwndMain, hwndView is resized and so is hwndTab. It ...
0
votes
2answers
111 views
rendering and color picking in QGLWidget : how to cope with both
I'm wondering if there's a better solution than this: I have a rendering code and a color picking code, I already shared everything that could be shared between these two codes (VBOs, etc..) and my ...
2
votes
3answers
226 views
How to avoid this NullPointerException
I'm working on a small arcade video game, and I am looking to double buffer to improve animation. I have one class that's supposed to draw the blank image, and another class that's supposed to draw a ...
0
votes
0answers
133 views
DoubleBuffering clears background in black
I am using BufferedGraphics to draw on my form and when I start to draw it clears the background black, only for the first time I draw.
I am using a picturebox and I set it's image to a new bitmap.
I ...
0
votes
1answer
419 views
QGraphicsView flickers
I wanted to write an change blindness programm for my girl friends bachelor thesis. It shows for X milli seconds a picture, shows a short "flicker image" (in this case just grey) and then shows a ...
0
votes
2answers
182 views
Flashing while reloading JTree
I am making a simulator with a JTree updating frequently. The nodes in the tree are all JProgressBars.
I'm calling tree.treeModel.insertNodeInto(,,) and treeModel.reload() to update the tree. the ...
1
vote
1answer
89 views
Efficiency when setting control styles using reflection
Background
I am currently trying to fix some behavior where Double Buffering causes a crash if a control is too large to allocate a buffer.
After much discussion and trial-and-error, we decided that ...
0
votes
1answer
117 views
Allegro, sprites leaving trail
I'm getting the problem my sprites leave a trail behind when i move them.
Tried drawning a BG with every refresh but then it start flickering.
This is what i do
// ...
int main(int argc, char ...
3
votes
1answer
263 views
WinForms - WPF like painting
We know very well how easy is too create a WPF application where user can paint a rectangle using the mouse. To do this you just create a Rectangle control and set its coordinates, you don't worry ...
0
votes
0answers
230 views
Color field in PropertyGrid ridiculously slow
I've got a PropertyGrid displaying an object, one of whose fields is a System.Drawing.Color. This makes the field on the PG automatically display a color, and if you click to edit it, you get a nice ...
2
votes
1answer
283 views
How to make double buffering for a panel?
I'm trying to do double buffering to get rid of the flicker, but redrawing the image flickers. I need to redraw the image with a periodicity in the bar at a new location, it works for me. But when ...
0
votes
2answers
261 views
WS_EX_COMPOSITED - high CPU
I am using WS_EX_COMPOSITED style in my application but its running the CPU to 100%, is there way to stop my application drawing for a while and to resume only when i need ?
Some people are suggesting ...
2
votes
2answers
488 views
Java: How to use double-buffering in the Snake game for smooth animation?
I am writing the Snake game. I am stuck with the animations, because I want to get smooth animation. I don't how to double buffer images so that to get double-buffering. What has to be done so that ...
0
votes
1answer
86 views
WM_EX_COMPOSITED without double-buffering
I am trying to implement double-buffering in a Win32 application, so I need the controls of a window to be painted from the backmost-control to the frontmost. As I understand it, WM_EX_COMPOSITED does ...
2
votes
1answer
499 views
Java Image Flickering
I can see from Google searches that this question gets asked a lot, but none of the solutions I find are doing it for me. I'm making a game in Java with images, you know, since games generally have ...
2
votes
1answer
530 views
Optimize drawing for paint application c#
I am making a paint project like photoshop using c#.
I have used GDI+ for the drawing. Sadly I cannot post the screen shot cuz of the reputation points required.
EDIT : Ok i got enough rep to upload a ...
2
votes
2answers
348 views
How to draw an Image underneath an open Menu
I'm implementing my own double-buffering for a BufferedImage in a JPanel so that I can display the mouse location in the BufferedImage without repainting every object back onto it on mousemovement. ...
0
votes
0answers
134 views
Java RepaintManager and JFileChooser
I am programming a simulation software using Java. I have a frame in which I paint with double buffering. Below is how I do that in constructor:
repaintmanager = new UnRepaintManager();
...
3
votes
3answers
2k views
Java swing double buffering
i just started using double buffering and everything worked just fine until i wanted to add a JScrollPane to the screen so i later on can do some camera movements. Everything shows up fine (my ...
0
votes
2answers
2k views
Double Buffer a JFrame
I have been reading a lot about Double Buffering as I am working on a 2D game. I have come across many different strategies for implementation, but am unsure how Double Buffering would fit into the ...
3
votes
2answers
478 views
What could cause Double Buffering to kill my app?
I have a few custom (winforms) components that draw to the screen using GDI+.
To prevent flickering on repaint, I decided to enable double buffering, so I added a line to my constructor:
public ...
2
votes
1answer
678 views
Win32 Double Buffering drawing black background
Doing a project in win32 in c++, attempting to double buffer the image being drawn, but I'm getting a black screen with the correct bitmaps drawn over it. This is also causing my WM_MOUSEMOVE ...
0
votes
1answer
187 views
What is the precise timing and effect of SDL_UpdateRect on a double-buffered screen?
Using a double-buffered screen with the Simple DirectMedia Layer, is it more efficient to call SDL_UpdateRect once after blitting multiple images or to call it once after blitting each individual ...
2
votes
2answers
535 views
how to synchronize double buffering in multithreaded app
I have two threads, one for data acquisition and the other one for display. In order to avoid from unnecessary synchronization. I use double buffering (or page flipping) as following:
data thread is ...
0
votes
1answer
1k views
VB.NET double buffering
I’ve been trying to get the double buffer function working in VB.NET GDI+ for a space invaders game using the following command
Public Sub New()
…
Me.SetStyle(ControlStyles.DoubleBuffer, ...
4
votes
2answers
365 views
Smooth PostScript animations
I would like to run animations in PostScript smoothly. To see what I want, let me switch to PostScript directly. Call ghostscript, and
200 dup scale .5 setgray 0 0 3 3 rectfill
We have now a gray ...
0
votes
1answer
732 views
Java SWT GC, how to flush the doublebuffering image forcefully?
Have the following code:
image = new Image(display, imageData);
offScreenImageGC.drawImage(image, 0, 0, imageData.width, imageData.height, imageData.x, imageData.y, imageData.width, ...
1
vote
5answers
996 views
Swapping buffers in single-writer-multiple-reader threads
The Story
There is a writer thread, periodically gathering data from somewhere (in real-time, but that doesn't matter much in the question). There are many readers then reading from these data. The ...
0
votes
0answers
637 views
MFC: How to double-buffer dialog and all its children in one buffer?
Want:
Apply double buffering on everything within a dialog.
Problem:
The dialog and its child controls each have their own OnPaint(), so the buffer is separated. Any method to make the dialog handle ...
0
votes
1answer
421 views
WM_TIMER animation flickering
Alright I'm using a timer with a 50 ms elapse time to animate some moving text (technically its scrolling between text).
Problem is, if you look closely, you can see the text flickering, and id like ...

