Support multisampled rendering on Metal - Part I
This patch implements MSAA resolve on Metal backends with the store action MTLStoreActionStoreAndMultisampleResolve. Note that this store action is not supported on all Metal drivers. In the future we will emulate it by doing MSAA resolve in another render pass. The end2end tests ResolveIntoOneMipmapLevelOf2DTexture and ResolveInto2DArrayTexture are temporarily disabled on Intel and NVidia Metal drivers due to driver issues. BUG=dawn:56 TEST=dawn_end2end_tests Change-Id: I7e87aa344691c7d0a389aca80500c7b89a427ea3 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/5900 Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Jiawei Shao <jiawei.shao@intel.com>
This commit is contained in:
parent
cf52d711fb
commit
865cad89b9
|
@ -67,7 +67,21 @@ namespace dawn_native { namespace metal {
|
|||
descriptor.colorAttachments[i].level = attachmentInfo.view->GetBaseMipLevel();
|
||||
descriptor.colorAttachments[i].slice = attachmentInfo.view->GetBaseArrayLayer();
|
||||
|
||||
descriptor.colorAttachments[i].storeAction = MTLStoreActionStore;
|
||||
ASSERT(attachmentInfo.storeOp == dawn::StoreOp::Store);
|
||||
// TODO(jiawei.shao@intel.com): emulate MTLStoreActionStoreAndMultisampleResolve on
|
||||
// the platforms that do not support this store action.
|
||||
if (attachmentInfo.resolveTarget.Get() != nullptr) {
|
||||
descriptor.colorAttachments[i].resolveTexture =
|
||||
ToBackend(attachmentInfo.resolveTarget->GetTexture())->GetMTLTexture();
|
||||
descriptor.colorAttachments[i].resolveLevel =
|
||||
attachmentInfo.resolveTarget->GetBaseMipLevel();
|
||||
descriptor.colorAttachments[i].resolveSlice =
|
||||
attachmentInfo.resolveTarget->GetBaseArrayLayer();
|
||||
descriptor.colorAttachments[i].storeAction =
|
||||
MTLStoreActionStoreAndMultisampleResolve;
|
||||
} else {
|
||||
descriptor.colorAttachments[i].storeAction = MTLStoreActionStore;
|
||||
}
|
||||
}
|
||||
|
||||
if (renderPass->hasDepthStencilAttachment) {
|
||||
|
|
|
@ -324,6 +324,8 @@ namespace dawn_native { namespace metal {
|
|||
descriptorMTL.vertexDescriptor = vertexDesc;
|
||||
[vertexDesc release];
|
||||
|
||||
descriptorMTL.sampleCount = GetSampleCount();
|
||||
|
||||
// TODO(kainino@chromium.org): push constants, textures, samplers
|
||||
|
||||
{
|
||||
|
|
|
@ -50,17 +50,24 @@ namespace dawn_native { namespace metal {
|
|||
}
|
||||
|
||||
MTLTextureType MetalTextureType(dawn::TextureDimension dimension,
|
||||
unsigned int arrayLayers) {
|
||||
unsigned int arrayLayers,
|
||||
unsigned int sampleCount) {
|
||||
switch (dimension) {
|
||||
case dawn::TextureDimension::e2D:
|
||||
return (arrayLayers > 1) ? MTLTextureType2DArray : MTLTextureType2D;
|
||||
if (sampleCount > 1) {
|
||||
ASSERT(arrayLayers == 1);
|
||||
return MTLTextureType2DMultisample;
|
||||
} else {
|
||||
return (arrayLayers > 1) ? MTLTextureType2DArray : MTLTextureType2D;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
MTLTextureType MetalTextureViewType(dawn::TextureViewDimension dimension) {
|
||||
MTLTextureType MetalTextureViewType(dawn::TextureViewDimension dimension,
|
||||
unsigned int sampleCount) {
|
||||
switch (dimension) {
|
||||
case dawn::TextureViewDimension::e2D:
|
||||
return MTLTextureType2D;
|
||||
return (sampleCount > 1) ? MTLTextureType2DMultisample : MTLTextureType2D;
|
||||
case dawn::TextureViewDimension::e2DArray:
|
||||
return MTLTextureType2DArray;
|
||||
case dawn::TextureViewDimension::Cube:
|
||||
|
@ -178,7 +185,8 @@ namespace dawn_native { namespace metal {
|
|||
|
||||
MTLTextureDescriptor* CreateMetalTextureDescriptor(const TextureDescriptor* descriptor) {
|
||||
MTLTextureDescriptor* mtlDesc = [MTLTextureDescriptor new];
|
||||
mtlDesc.textureType = MetalTextureType(descriptor->dimension, descriptor->arrayLayerCount);
|
||||
mtlDesc.textureType = MetalTextureType(descriptor->dimension, descriptor->arrayLayerCount,
|
||||
descriptor->sampleCount);
|
||||
mtlDesc.usage = MetalTextureUsage(descriptor->usage);
|
||||
mtlDesc.pixelFormat = MetalPixelFormat(descriptor->format);
|
||||
|
||||
|
@ -190,6 +198,8 @@ namespace dawn_native { namespace metal {
|
|||
mtlDesc.arrayLength = descriptor->arrayLayerCount;
|
||||
mtlDesc.storageMode = MTLStorageModePrivate;
|
||||
|
||||
mtlDesc.sampleCount = descriptor->sampleCount;
|
||||
|
||||
return mtlDesc;
|
||||
}
|
||||
|
||||
|
@ -241,7 +251,8 @@ namespace dawn_native { namespace metal {
|
|||
mMtlTextureView = [mtlTexture retain];
|
||||
} else {
|
||||
MTLPixelFormat format = MetalPixelFormat(descriptor->format);
|
||||
MTLTextureType textureViewType = MetalTextureViewType(descriptor->dimension);
|
||||
MTLTextureType textureViewType =
|
||||
MetalTextureViewType(descriptor->dimension, texture->GetSampleCount());
|
||||
auto mipLevelRange = NSMakeRange(descriptor->baseMipLevel, descriptor->mipLevelCount);
|
||||
auto arrayLayerRange =
|
||||
NSMakeRange(descriptor->baseArrayLayer, descriptor->arrayLayerCount);
|
||||
|
|
|
@ -370,8 +370,49 @@ TEST_P(MultisampledRenderingTest, ResolveIntoMultipleResolveTargets) {
|
|||
VerifyResolveTarget(kGreen, resolveTexture2);
|
||||
}
|
||||
|
||||
// Test doing MSAA resolve on one multisampled texture twice works correctly.
|
||||
TEST_P(MultisampledRenderingTest, ResolveOneMultisampledTextureTwice) {
|
||||
constexpr bool kTestDepth = false;
|
||||
dawn::CommandEncoder commandEncoder = device.CreateCommandEncoder();
|
||||
dawn::RenderPipeline pipeline = CreateRenderPipelineWithOneOutputForTest(kTestDepth);
|
||||
|
||||
constexpr dawn::Color kGreen = {0.0f, 0.8f, 0.0f, 0.8f};
|
||||
constexpr uint32_t kSize = sizeof(kGreen);
|
||||
|
||||
dawn::Texture resolveTexture2 = CreateTextureForOutputAttachment(kColorFormat, 1);
|
||||
|
||||
// In first render pass we draw a green triangle and specify mResolveView as the resolve target.
|
||||
{
|
||||
utils::ComboRenderPassDescriptor renderPass = CreateComboRenderPassDescriptorForTest(
|
||||
{mMultisampledColorView}, {mResolveView}, dawn::LoadOp::Clear, dawn::LoadOp::Clear,
|
||||
kTestDepth);
|
||||
|
||||
EncodeRenderPassForTest(commandEncoder, renderPass, pipeline, &kGreen.r, kSize);
|
||||
}
|
||||
|
||||
// In second render pass we do MSAA resolve into resolveTexture2.
|
||||
{
|
||||
dawn::TextureView resolveView2 = resolveTexture2.CreateDefaultTextureView();
|
||||
utils::ComboRenderPassDescriptor renderPass = CreateComboRenderPassDescriptorForTest(
|
||||
{mMultisampledColorView}, {resolveView2}, dawn::LoadOp::Load, dawn::LoadOp::Load,
|
||||
kTestDepth);
|
||||
|
||||
dawn::RenderPassEncoder renderPassEncoder = commandEncoder.BeginRenderPass(&renderPass);
|
||||
renderPassEncoder.EndPass();
|
||||
}
|
||||
|
||||
dawn::CommandBuffer commandBuffer = commandEncoder.Finish();
|
||||
dawn::Queue queue = device.CreateQueue();
|
||||
queue.Submit(1, &commandBuffer);
|
||||
|
||||
VerifyResolveTarget(kGreen, mResolveTexture);
|
||||
VerifyResolveTarget(kGreen, resolveTexture2);
|
||||
}
|
||||
|
||||
// Test using a layer of a 2D texture as resolve target works correctly.
|
||||
TEST_P(MultisampledRenderingTest, ResolveIntoOneMipmapLevelOf2DTexture) {
|
||||
// TODO(jiawei.shao@intel.com): investigate why this case fails on Intel and Nvidia.
|
||||
DAWN_SKIP_TEST_IF(IsMetal() && (IsIntel() || IsNvidia()));
|
||||
constexpr uint32_t kBaseMipLevel = 2;
|
||||
|
||||
dawn::TextureViewDescriptor textureViewDescriptor;
|
||||
|
@ -410,6 +451,8 @@ TEST_P(MultisampledRenderingTest, ResolveIntoOneMipmapLevelOf2DTexture) {
|
|||
|
||||
// Test using a level or a layer of a 2D array texture as resolve target works correctly.
|
||||
TEST_P(MultisampledRenderingTest, ResolveInto2DArrayTexture) {
|
||||
// TODO(jiawei.shao@intel.com): investigate why this case fails on Intel and Nvidia.
|
||||
DAWN_SKIP_TEST_IF(IsMetal() && (IsIntel() || IsNvidia()));
|
||||
dawn::TextureView multisampledColorView2 =
|
||||
CreateTextureForOutputAttachment(kColorFormat, kSampleCount).CreateDefaultTextureView();
|
||||
|
||||
|
@ -468,5 +511,4 @@ TEST_P(MultisampledRenderingTest, ResolveInto2DArrayTexture) {
|
|||
VerifyResolveTarget(kGreen, resolveTexture2, kBaseMipLevel2, kBaseArrayLayer2);
|
||||
}
|
||||
|
||||
// TODO(jiawei.shao@intel.com): enable multisampled rendering on all Dawn backends.
|
||||
DAWN_INSTANTIATE_TEST(MultisampledRenderingTest, D3D12Backend, OpenGLBackend, VulkanBackend);
|
||||
DAWN_INSTANTIATE_TEST(MultisampledRenderingTest, D3D12Backend, OpenGLBackend, MetalBackend, VulkanBackend);
|
||||
|
|
Loading…
Reference in New Issue