The Driver is up to date, I already check for update and try to uninstall current driver and installing the last one from AMD site.
The strangest thing is that the performance are very slow even for a gfx card like that, I play game like batman arkham asylum and nverwinter mmorpg so it seems strange that I could not handle 4 texture.
this is the code of my game loop where I count the FPS, the method is simple, every second I count how many loop I've made.
DateTime start = DateTime.Now;
Int32 countFps = 0;
Int32 maxFPS = 0;
while (!_quit)
{
_presentationManager.DispatchEvents();
_presentationManager.Clear();
//This is the function that render background image. Without this the FPS are about 100
_presentationManager.ShowLocation(_currentLocation);
UpdateMainActor();
//Render the player
_presentationManager.ShowActor(_mainActor);
_presentationManager.ShowFPS(maxFPS);
_presentationManager.Display();
DateTime end = DateTime.Now;
TimeSpan duration = end - start;
if(duration.Seconds >=1 )
{
start = DateTime.Now;
maxFPS = countFps;
countFps = 0;
}
else
countFps++;
}