mirror of
https://github.com/encounter/dawn-cmake.git
synced 2025-12-15 16:16:08 +00:00
Implement texture_depth_multisampled_2d
Implemented for all readers and writers. Cleaned up some verbose code in sem::Function and the Inspector in the process. Fixed: tint:1032 Change-Id: Ia6f2f59e6d2e511c89160b97be990e8b7c9828d9 Reviewed-on: https://dawn-review.googlesource.com/c/tint/+/59664 Kokoro: Kokoro <noreply+kokoro@google.com> Reviewed-by: David Neto <dneto@google.com> Reviewed-by: James Price <jrprice@google.com> Commit-Queue: Ben Clayton <bclayton@google.com> Auto-Submit: Ben Clayton <bclayton@google.com>
This commit is contained in:
committed by
Tint LUCI CQ
parent
d12379a405
commit
fd35aa8e47
@@ -20,6 +20,7 @@
|
||||
#include "src/program_builder.h"
|
||||
#include "src/sem/atomic_type.h"
|
||||
#include "src/sem/block_statement.h"
|
||||
#include "src/sem/depth_multisampled_texture_type.h"
|
||||
#include "src/sem/for_loop_statement.h"
|
||||
#include "src/sem/reference_type.h"
|
||||
#include "src/sem/sampler_type.h"
|
||||
@@ -146,6 +147,9 @@ ast::Type* Transform::CreateASTTypeFor(CloneContext& ctx, const sem::Type* ty) {
|
||||
if (auto* t = ty->As<sem::DepthTexture>()) {
|
||||
return ctx.dst->create<ast::DepthTexture>(t->dim());
|
||||
}
|
||||
if (auto* t = ty->As<sem::DepthMultisampledTexture>()) {
|
||||
return ctx.dst->create<ast::DepthMultisampledTexture>(t->dim());
|
||||
}
|
||||
if (auto* t = ty->As<sem::MultisampledTexture>()) {
|
||||
return ctx.dst->create<ast::MultisampledTexture>(
|
||||
t->dim(), CreateASTTypeFor(ctx, t->type()));
|
||||
|
||||
Reference in New Issue
Block a user