Direct video card access
        Posted  
        
            by icemanind
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by icemanind
        
        
        
        Published on 2010-05-28T17:35:20Z
        Indexed on 
            2010/05/28
            17:41 UTC
        
        
        Read the original article
        Hit count: 301
        
Guys, I am trying to write a class in C# that can be used as a direct replacement for the C# Bitmap class. What I want to do instead though is perform all graphic functions done on the bitmap using the power of the video card. From what I understand, functions such as DrawLine or DrawArc or DrawText are primitive functions that use simple cpu math algorithms to perform the job. I, instead, want to use the graphics card cpu and memory to do these and other advanced functions, such as skinning a bitmap (applying a texture) and true transparancy. My problem is, in C#, how do I access direct video functions? Is there a library or something I need?
© Stack Overflow or respective owner