Clean up unresolved comments from review

Some comments from https://dawn-review.googlesource.com/c/tint/+/42060
were not addressed before it landed, this is a follow-up to address
them.

BUG=tint:489

Change-Id: Ieafe143e867ce0f5edf6cf2258db3ed12ffc13fb
Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/42080
Commit-Queue: Ryan Harrison <rharrison@chromium.org>
Auto-Submit: Ryan Harrison <rharrison@chromium.org>
Reviewed-by: Ben Clayton <bclayton@google.com>
This commit is contained in:
Ryan Harrison 2021-02-18 21:04:29 +00:00 committed by Commit Bot service account
parent 89036852cc
commit 41e58d89ea
1 changed files with 8 additions and 6 deletions

View File

@ -79,9 +79,10 @@ TypeTextureDimensionToResourceBindingTextureDimension(
return ResourceBinding::TextureDimension::kCube;
case type::TextureDimension::kCubeArray:
return ResourceBinding::TextureDimension::kCubeArray;
default:
case type::TextureDimension::kNone:
return ResourceBinding::TextureDimension::kNone;
}
return ResourceBinding::TextureDimension::kNone;
}
ResourceBinding::SampledKind BaseTypeToSampledKind(type::Type* base_type) {
@ -181,9 +182,10 @@ ResourceBinding::ImageFormat TypeImageFormatToResourceBindingImageFormat(
return ResourceBinding::ImageFormat::kRgba32Sint;
case type::ImageFormat::kRgba32Float:
return ResourceBinding::ImageFormat::kRgba32Float;
default:
case type::ImageFormat::kNone:
return ResourceBinding::ImageFormat::kNone;
}
return ResourceBinding::ImageFormat::kNone;
}
} // namespace
@ -605,15 +607,15 @@ std::vector<ResourceBinding> Inspector::GetStorageTextureResourceBindingsImpl(
entry.bind_group = binding_info.group->value();
entry.binding = binding_info.binding->value();
auto* texture_type = decl->type()->UnwrapIfNeeded()->As<type::Texture>();
auto* texture_type =
decl->type()->UnwrapIfNeeded()->As<type::StorageTexture>();
entry.dim = TypeTextureDimensionToResourceBindingTextureDimension(
texture_type->dim());
type::Type* base_type =
texture_type->As<type::StorageTexture>()->type()->UnwrapIfNeeded();
type::Type* base_type = texture_type->type()->UnwrapIfNeeded();
entry.sampled_kind = BaseTypeToSampledKind(base_type);
entry.image_format = TypeImageFormatToResourceBindingImageFormat(
texture_type->As<type::StorageTexture>()->image_format());
texture_type->image_format());
result.push_back(entry);
}