CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Aug 2009
    Posts
    81

    Question regarding bitblt performance

    hey,
    I`m building a remote desktop application. Now I want to print every image with bitblt windows function, do you think it`s gonna work efficiently(I have to update the screen like every 10 miliseconds)?
    what are some alternatives you can suggest in order to make my application run smoothly without undesired flickering?

    Thanks

  2. #2
    Join Date
    Apr 1999
    Posts
    27,449

    Re: Question regarding bitblt performance

    Quote Originally Posted by Regel View Post
    hey,
    I`m building a remote desktop application. Now I want to print every image with bitblt windows function, do you think it`s gonna work efficiently(I have to update the screen like every 10 miliseconds)?
    The first parameter to BitBlt is the handle to the device context. This is the underlying factor as to whether BitBlt is "fast" or not. If you have a slow video hardware, it will be slow, fast video hardware, it will be fast.

    http://www.karpfenteich.net/colorful/bitblt.html

    Regards,

    Paul McKenzie

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured