High Speed Graphics

  • Thread starter Thread starter David Pendrey
  • Start date Start date
D

David Pendrey

Greetings,
I am writing an application which will need to move around 50 bitmaps
on the form at a speed high enough that it appears smooth. I am currently
using some custom controls to contain the bitmap and the logic for the
movement in the same location and have have a loop which updates all bitmaps
each 50ms (20fps). Unfortunatly the time taken to render this is too great
and my application does not function correctly. The solution does not need
ot be confined to a custom control but does need to be fast and can be
complicated. The bitmaps are small (about 30 pixels square) and there are
only 8 different bitmaps to display in multiple locations. Thanks for the
advice people
 
Hi,

In addition to Directx there also is opengl

http://www.ondotnet.com/pub/a/dotnet/2003/04/28/opengl.html

Ken
--------------------
Greetings,
I am writing an application which will need to move around 50 bitmaps
on the form at a speed high enough that it appears smooth. I am currently
using some custom controls to contain the bitmap and the logic for the
movement in the same location and have have a loop which updates all bitmaps
each 50ms (20fps). Unfortunatly the time taken to render this is too great
and my application does not function correctly. The solution does not need
ot be confined to a custom control but does need to be fast and can be
complicated. The bitmaps are small (about 30 pixels square) and there are
only 8 different bitmaps to display in multiple locations. Thanks for the
advice people
 
David Pendrey said:
I am writing an application which will need to move around 50 bitmaps on
the form at a speed high enough that it appears smooth. I am currently
using some custom controls to contain the bitmap and the logic for the
movement in the same location and have have a loop which updates all
bitmaps each 50ms (20fps). Unfortunatly the time taken to render this is
too great and my application does not function correctly. The solution does
not need ot be confined to a custom control but does need to be fast and
can be complicated. The bitmaps are small (about 30 pixels square) and
there are only 8 different bitmaps to display in multiple locations. Thanks
for the advice people

Some additional links on OpenGL:

Using OpenGL in .NET applications
<URL:http://dotnet.mvps.org/dotnet/faqs/?id=opengl&lang=en>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top