- Код: Выделить всё
params3D = new PresentParameters();
//Buffer format
params3D.AutoDepthStencilFormat = DepthFormat.D16;
params3D.EnableAutoDepthStencil = true;
params3D.Windowed = true;
params3D.DeviceWindow = mainControl;
//params3D.PresentationInterval = PresentInterval.Immediate;
params3D.SwapEffect = SwapEffect.Discard;
//Creating device
mainDevice = new Device(0, DeviceType.Hardware, mainControl, CreateFlags.SoftwareVertexProcessing, params3D);
mainDevice.DeviceReset += new EventHandler(mainDevice_DeviceReset);
static void mainDevice_DeviceReset(object sender, EventArgs e)
{
mainDevice = (Device)sender;
SetFont("Arial", 8, FontStyle.Regular);
}
Инициализация такая, пробовал даже высталять размеры и Handle окна