With this SDL.NET code i get 63 fps. Why? as you can see i am only doing one fill.

    void OnTick(object sender, TickEventArgs args)
    {
        if (firstTick)
        {
            firstTick = false;
            return;
        }
        if (!lastEsc && Keyboard.IsKeyPressed(Key.Escape))
        {
            Events.QuitApplication();
        }

        lastEsc = Keyboard.IsKeyPressed(Key.Escape);            
        surface.Fill(battle_field, Color.DarkOliveGreen);

        myelapse += args.TicksElapsed;
        while(myelapse>=1000){
            myelapse-= 100;
            Console.WriteLine(args.Fps);
        }

        surface.Update();
    }
link|improve this question

74% accept rate
1  
Is your refresh rate 60hz? – Blindy May 13 '11 at 20:33
@Blindy: oh yes it is! – acidzombie24 May 13 '11 at 20:53
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.