The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
75 views

JPanel tearing even though I double buffer?

EDIT: This is an SSCCE to demonstrate my problem. import java.awt.Color; import java.awt.Dimension; import java.awt.Graphics; import java.awt.Image; import java.awt.Point; import ...
0
votes
1answer
82 views

what is the fastest way to draw pixel in win32

I'm writting a simple software renderer, load 3d model, process vertex, rasterization, texture, lighting, all that things, all done. I used SDL(not using OpenGL mode) to draw pixel on its SDL_Surface, ...
1
vote
1answer
91 views

how to stop flickering in C# windowsforms form Application?

I have main Panel and Auto Scroll=true, and all controls are placed on main panel. Functionality works fine but when I click on any control or scroll down or up so it start flickering for a second ...
6
votes
2answers
136 views

TToolbar incompatible with TForm.DoubleBuffered?

I am using Delphi XE3. When I create a new VCL project and drop a TToolbar on it, everything works fine - except when I activate Form1.DoubleBuffered. From that moment on, drawing of the toolbar is ...
3
votes
1answer
236 views

Double buffering doesn't work on a panel?

I'm working on a small painting program similar to ms paint. At the moment, I'm trying to implement 'select function'. I'm facing flickering problem so I've did some researches and I found out, that I ...
0
votes
1answer
787 views

vb.net hiding Columns in DataGridView is very slow

trying to hide 44 columns of a DataGridView take 44 seconds on Windows 7 machine. How can I speed this up? I used the following code: 'Turn on DataGridView.DoubleBuffered Dim myType As Type = ...
1
vote
1answer
64 views

Paint method flickering

consider the following paint function (abbreviated): public void paint(object sender, PaintEventArgs e) { base.OnPaint(e); Graphics g = e.Graphics; BufferedGraphicsContext context = ...
0
votes
1answer
99 views

invalid argument error when setting yres_virtual in fb_var_screeninfo

I'm trying to make an application for linux that writes directly to the framebuffer /dev/fb0. In order to make it double buffered I try to make the virtual screen be double the size of the screen. ...
1
vote
1answer
136 views

OwnerDraw with WS_EX_COMPOSITED under XP

I have a static control which has SS_OWNERDRAW and SS_NOTIFY flag when it is crated. Its parent window has WS_EX_COMPOSITED flag. Under Windows XP, it is not drawn correctly, as the picture below ...
0
votes
2answers
76 views

PowerBuilder Classic 12.5 - Double buffering, Vertical Sync

Since i have lots of controls(buttons,dropdowns, gridviews) on a single form, the drawing seems to lag when fetching data from db, or i notice some screen tearing/lag when the control gets data from ...
1
vote
1answer
157 views

Flicker when custom drawing on a double buffered TTreeView

When listening to the AdvancedCustomDraw event of a TTreeView event this way: if Stage = cdPrePaint then begin // modify some Sender.Canvas properties and let it draw itself end else if Stage = ...
0
votes
2answers
149 views

Java Applet game double buffering broke with switch statement

I'm just starting out trying to make games and I did a HelloWorld Applet, then tested my idea for scrolling on it, and eventually it started turning into a "helicopter" style game. Now everything ...
2
votes
2answers
79 views

I need help understanding how to write the code for double buffering in java applets

I understand the logic behind it, but don't know how to translate that to code. Could someone please show me on this example that I wrote? All the applet does is that the center rectangle moves up, ...
1
vote
1answer
141 views

Creating a custom graph in Winforms

I am trying to make a simple graph for my application which shows real-time data for every 100 ms. So I thought I could draw the graph line using the DrawCurve method and started with the following ...
1
vote
1answer
150 views

Render Large Canvases in UserControl

I've been having trouble trying to implement this for a couple of days now. I've searched extensively on similar questions in regards to what I'm trying to do but I haven't come across a question that ...
0
votes
2answers
515 views

How can I make an image move smoothly ?

I have a PictureBox image in a form which is moving with the mouse movement on the panel. It's moving as I want it, however it's flickering all the time (like refreshes) and I learnt that it's a ...
0
votes
2answers
109 views

Double Buffering in Java

I found this code of double buffering on internet but it has no explaination. I am a little confused in this code. Why is the Image "i" used? What is its use if it is to be used once? Why are we ...
0
votes
0answers
45 views

JLabel movement is glitchy in browser

When I drag a jlabel, it moves fine and drops where I want it to, but when I am running my applet in chrome, some sides of the label don't seem to be rendering properly. As in, if I'm dragging it to ...
0
votes
1answer
133 views

Re-size components after window resizes

I am writing an Applet game, in which I would like the Applet to re-size to fill the browser window. I understand that this is possible to do with HTML, and for now am just assuming that I have an ...
3
votes
2answers
316 views

Double Buffering, Assembly x86

Well, I'm making a Space Invaders game on Assembly x86 ( 8086 ), and it runs pretty good so far. I'm using assembly in graphics mode 13h, that means 320x200 pixels and 256 colors. For drawing I'm ...
0
votes
1answer
187 views

double buffer customer drawn list box

I have a custom draw method so I can make items in a list box different colours. The problem is that I redraw the listbox every 500ms to check if the values have changed. This makes the listbox ...
0
votes
0answers
166 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 ...
2
votes
2answers
397 views

Java Swing : drawLine very slow

I am writing a java application using swing in which I need to draw a grid above a square. In order to do so, I am using the drawLine(...) method provided by the Graphics class. Everything works ...
0
votes
1answer
268 views

SDL Double buffering on HW_SURFACE

I dont understand why my SDL app wont set the DOUBLE_BUF as i'm asking; Here is a short code, this, executed without arguments open a fullscreen window, 1024*768, in 32 BPP mode. #include ...
1
vote
0answers
76 views

Java Canvas Zooming in Flickering

I'm working on a project that requires me to be able to zoom in and out on a Canvas. I'm using the method: setSize(new Dimension(WIDTH * scale, HEIGHT * scale)); and from there just modifying the ...
2
votes
0answers
290 views

Flickering with collada model and mesh

I'm novice in three.js,so i need some assistance. init(); animate(); function init() { container = document.getElementById( 'container' ); renderer = new ...
3
votes
1answer
155 views

Can't seem to make double-buffered painting with multiple monitors

I'm trying to remake my Windows screensaver written with C++ and WinAPIs to work on multiple monitors. I found this article that gives the basics. But when I implement it in my own code, I get a weird ...
0
votes
0answers
80 views

how to doublebuffer child controls?

I have a panel and I add a group of custom controls (named A) which derived from Control in this panel. In custom control A, I use override OnPaint() to draw some image and text, and add some other ...
0
votes
1answer
507 views

OpenGL double buffering while over 60 fps

How does an OpenGL application with double buffering achieve more than 60 fps (dislay refresh limit)? Does it depend on driver implementation, namely whether it uses double or tripple buffering? ...
2
votes
4answers
135 views

Simple animation using doublebufferd canvas is not smooth

I try to develop a simple flash game using a doublebuffer to draw the animations. The redraw happens when Event.ENTER_FRAME is fired. The backbuffer used for doublebuffering is of type BitmapData. ...
1
vote
1answer
490 views

How do I prevent pictureBox images from trailing while I move it?

Hello stackoverflow community. I already tried looking for a similar question but I only found questions about flickering, which isn't the same as the problem I am having. I need help preventing the ...
2
votes
1answer
509 views

What is the correct way to suppress WM_ERASEBKGND?

If I need to use double buffering, I need to suppress WM_ERASEBKGND message. I can handle WM_ERASEBKGND and return immediately. But can I set the WNDCLASS/WNDCLASSEX's hbrBackground to NULL and not ...
1
vote
1answer
404 views

Double Buffering not Working OpenGL

I wanted to make it double buffer, but it is still flickering. It is basically a modified version of the OpenNI UserTracker sample, which runs well on my computer, but I don't think I've deleted or ...
4
votes
1answer
248 views

Implementing Double Buffering in Java

I have a simple Java JFrame canvas. I am updating what is on the screen every half second or so, and have flickering. I want to implement double buffering to eliminate the flickering, but I am fairly ...
1
vote
0answers
204 views

100% CPU-Load when double-buffering is activated with WS_EX_COMPOSITED

To stop my application from flickering, I tried to activate DoubleBuffering for all of my controls and subcontrols. To achieve this, I added the follwoing codesnippet in my mainform: protected ...
3
votes
1answer
181 views

NullPointerException when using Double Buffer in swing

In the following code i'm using a doubleBuffer to avoid flickering of the image as was suggested in this question of mine import java.awt.Graphics; import java.awt.Image; import ...
0
votes
0answers
102 views

how do I do double buffering in VBA?

I have a form that contains frames in VBA and I'm changing the frames when the user does some stuff. I change their size as well as their captions. However, there are ~40 frames so there is a small ...
1
vote
0answers
214 views

How to correctly handle WS_EX_COMPOSITED?

Someone can explain how to create WndProc that is handling bug caused by WS_EX_COMPOSITED (the bug is endless WM_PAINT on some controls) ? All what i use for WS_EX_COMPOSITED is when my app window is ...
0
votes
1answer
91 views

Java Double Buffering — access backimage

I'm trying to create a java game that will perform image effects (blurring, deforming, etc. on a BufferedImage) in real-time in conjunction with a BufferStrategy. To do this, I'd like to be able to ...
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 ...
0
votes
5answers
2k views

How do you double buffer in java for a game?

So in the game I'm working on, I have a marble follow the mouse, but when it does this the screen flickers. The background includes two jpegs and 9 rectangles. How would I go about double buffering ...
0
votes
1answer
652 views

Optimize drawing to buffer C#

Im trying to make a photoshop like application for my college project in c# So far I,ve created a custom panel called canvas and overloaded the paint method to draw the canvasBuffer. The project is ...
4
votes
1answer
223 views

Why is getSize() not working for me here and why the flicker when resizing?

This is my first attempt at using BufferStrategy and I'd really appreciate some hints. 1) Why, in the below code, does getSize() return dimensions of 0 until you have resized the window? How can I ...
0
votes
0answers
234 views

C# LineShape Flicker

I'm drawing a line over a Chart using a LineShape - part of the Microsoft VisualBasic Powerpacks kit. I need to be able to click and drag the line. I can currently do that, but while dragging the line ...
3
votes
1answer
233 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 ...
1
vote
1answer
157 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); ...
0
votes
1answer
739 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, ...
2
votes
1answer
354 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 ...
5
votes
6answers
2k 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 ...
2
votes
1answer
222 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 2 3