Hi again,
OK first question is, what do you mean it didn't work at 800x600 or 1024x768
![Question :?:](./images/smilies/icon_question.gif)
- What did it work with ??
Secondly, sorry I only got confused by your 'screenshots'
As one displays the driver detail and frame rate, and the other does not.
This would suggest you are running 2 different versions of the app.
Unless you have this as an option that is toggled on and off.
Can you take 2 windowed mode screen shots and post again
UPDATE:
A note on your createDevice
monkeycracks wrote:
createDevice(EDT_OPENGL, dimension2d<s32>(1024,768),32,true,true,this);
Should be declared as:
(device, resolution, bit depth, fullscreen, scencil buffer, Vsync, eventReciever - 0)
Code: Select all
createDevice(driverType, core::dimension2d<s32>(1024, 768), 32, false, true, false, 0);
Your code above, would be setting Vsync to 'this'
You scratch my back, I'll scratch yours.