我正在尝试通过以下代码创建DirectX设备:
Caps deviceCapability;
int deviceAdapter = Manager.Adapters.Default.Adapter;
try
{
deviceCapability = Manager.GetDeviceCaps(
deviceAdapter, DeviceType.Hardware);
}
catch (Exception ex1)
{
try
{
deviceCapability = Manager.GetDeviceCaps(
deviceAdapter, DeviceType.Software);
}
catch (Exception ex2)
{
deviceCapability = Manager.GetDeviceCaps(
deviceAdapter, DeviceType.Reference);
}
}
CreateFlags deviceFlags = CreateFlags.SoftwareVertexProcessing;
if(deviceCapability.DeviceCaps.SupportsHardwareTransformAndLight == true)
{
deviceFlags = CreateFlags.HardwareVertexProcessing;
}
mDevice = new Device(deviceAdapter, deviceCapability.DeviceType,
mInvisiblePanel, deviceFlags, mPresentParams);
问题在于,这仅适用于某些计算机(例如我的工作计算机),而不适用于其他计算机(具体来说是Panasonic CF-19 Toughbook)。我已经检查以确保有问题的PC通过dxdiag启用了硬件加速,并且仍然不会出错。
不幸的是,我收到的唯一错误消息是“应用程序错误”。我什至在上面的代码之间插入了几个消息框,似乎从来没有碰过ex1和ex2 catch块。
有想法该怎么解决这个吗?
编辑:对不起,我才意识到我忘了显示我的PresentParameters。
// Setup the device parameters
PresentParameters mPresentParams = new PresentParameters();
mPresentParams.Windowed = true;
mPresentParams.SwapEffect = SwapEffect.Discard;
mPresentParams.AutoDepthStencilFormat = DepthFormat.D16;
mPresentParams.EnableAutoDepthStencil = true;
///* TODO: Anti-aliasing is not working
mPresentParams.MultiSample = MultiSampleType.NonMaskable;
mPresentParams.MultiSampleQuality = 0;
最佳答案
解决了。该死,我已经很蠢了。
将PresentParameters减少到仅这3行,即可在Toughbook上使用。
// Setup the device parameters
PresentParameters mPresentParams = new PresentParameters();
mPresentParams.Windowed = true;
mPresentParams.SwapEffect = SwapEffect.Discard;
关于c# - C#:无法创建DirectX设备。硬件类型或软件类型均无效,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5099159/