Мультисэмплинг и Direct3D10 / D3DImage взаимодействия
Я пытаюсь реализовать Renderengine с использованием Direct3D 10 (SlimDX) и WPF.
Я создаю свое устройство и рендеринг цели с правильными параметрами MultiSample (работают 1,0 / 2,0 и 4,0)
this.multiSamplingDescription = new SampleDescription(sampleCount, qualityLevel - 1); // 4,1
Texture2DDescription colordesc = new Texture2DDescription();
colordesc.BindFlags = BindFlags.RenderTarget | BindFlags.ShaderResource;
colordesc.Format = this.renderTargetViewFormat; // Format.B8G8R8A8_UNorm
colordesc.Width = width;
colordesc.Height = height;
colordesc.MipLevels = 1;
colordesc.SampleDescription = multiSamplingDescription;
colordesc.Usage = ResourceUsage.Default;
colordesc.OptionFlags = ResourceOptionFlags.Shared;
colordesc.CpuAccessFlags = CpuAccessFlags.None;
colordesc.ArraySize = 4;[/code]
Тогда у меня возникла проблема при попытке создать общую текстуру для D3DImage...
this.Direct3D9Context = new Direct3DEx();
this.presentParams = new PresentParameters();
this.presentParams.Windowed = true;
this.presentParams.SwapEffect = SwapEffect.Discard;
this.presentParams.DeviceWindowHandle = GetDesktopWindow();
this.presentParams.PresentationInterval = PresentInterval.Immediate;
this.presentParams.Multisample = MultisampleType.None;
this.presentParams.MultisampleQuality = 0;
this.Device = new DeviceEx(this.Direct3D9Context, 0, DeviceType.Hardware, IntPtr.Zero, CreateFlags.HardwareVertexProcessing | CreateFlags.Multithreaded | CreateFlags.FpuPreserve, this.presentParams);
...
this.presentParams.Multisample = sampleCount; // = 4
this.presentParams.MultisampleQuality = 0;
this.Device.Reset(this.presentParams);
...
this.SharedTexture = new Texture(this.Device, texture.Description.Width, texture.Description.Height, 1, Usage.RenderTarget, format, Pool.Default, ref Handle);
// format = Format.A8R8G8B8
// Width = 1244 , same as colordesc
// height = 699, same as colordesc
Я что-то упустил?