/third_party/skia/third_party/externals/tint/src/ast/ |
D | external_texture.cc | 19 TINT_INSTANTIATE_TYPEINFO(tint::ast::ExternalTexture); 25 ExternalTexture::ExternalTexture(ProgramID pid, const Source& src) in ExternalTexture() function in tint::ast::ExternalTexture 28 ExternalTexture::ExternalTexture(ExternalTexture&&) = default; 30 ExternalTexture::~ExternalTexture() = default; 32 std::string ExternalTexture::FriendlyName(const SymbolTable&) const { in FriendlyName() 36 const ExternalTexture* ExternalTexture::Clone(CloneContext* ctx) const { in Clone() 37 return ctx->dst->create<ExternalTexture>(); in Clone()
|
D | external_texture.h | 26 class ExternalTexture : public Castable<ExternalTexture, Texture> { 31 ExternalTexture(ProgramID pid, const Source& src); 34 ExternalTexture(ExternalTexture&&); 35 ~ExternalTexture() override; 45 const ExternalTexture* Clone(CloneContext* ctx) const override;
|
D | external_texture_test.cc | 26 Texture* ty = create<ExternalTexture>(); in TEST_F() 28 EXPECT_TRUE(ty->Is<ExternalTexture>()); in TEST_F() 35 auto* ty = create<ExternalTexture>(); in TEST_F() 40 auto* ty = create<ExternalTexture>(); in TEST_F()
|
/third_party/skia/third_party/externals/tint/src/sem/ |
D | external_texture_type.cc | 19 TINT_INSTANTIATE_TYPEINFO(tint::sem::ExternalTexture); 24 ExternalTexture::ExternalTexture() : Base(ast::TextureDimension::k2d) {} in ExternalTexture() function in tint::sem::ExternalTexture 26 ExternalTexture::ExternalTexture(ExternalTexture&&) = default; 28 ExternalTexture::~ExternalTexture() = default; 30 std::string ExternalTexture::type_name() const { in type_name() 34 std::string ExternalTexture::FriendlyName(const SymbolTable&) const { in FriendlyName()
|
D | external_texture_type.h | 26 class ExternalTexture : public Castable<ExternalTexture, Texture> { 29 ExternalTexture(); 32 ExternalTexture(ExternalTexture&&); 33 ~ExternalTexture() override;
|
D | external_texture_type_test.cc | 31 ExternalTexture s; in TEST_F() 34 EXPECT_TRUE(ty->Is<ExternalTexture>()); in TEST_F() 42 ExternalTexture s; in TEST_F() 48 ExternalTexture s; in TEST_F() 53 ExternalTexture s; in TEST_F()
|
D | depth_texture_type_test.cc | 33 EXPECT_FALSE(ty->Is<ExternalTexture>()); in TEST_F()
|
D | sampled_texture_type_test.cc | 33 EXPECT_FALSE(ty->Is<ExternalTexture>()); in TEST_F()
|
D | multisampled_texture_type_test.cc | 34 EXPECT_FALSE(ty->Is<ExternalTexture>()); in TEST_F()
|
/third_party/skia/third_party/externals/tint/src/transform/ |
D | external_texture_transform.cc | 60 ->Is<sem::ExternalTexture>()) { in Run() 110 if (::tint::Is<ast::ExternalTexture>(var->type)) { in Run()
|
D | multiplanar_external_texture.cc | 84 if (!::tint::Is<ast::ExternalTexture>(var->type)) { in Process() 154 intrinsic->Parameters()[0]->Type()->Is<sem::ExternalTexture>() && in Process() 204 if (::tint::Is<ast::ExternalTexture>(param->type)) { in Process()
|
/third_party/skia/third_party/externals/dawn/src/tests/unittests/validation/ |
D | ExternalTextureTests.cpp | 171 wgpu::ExternalTexture externalTexture = device.CreateExternalTexture(&externalDesc); in TEST_F() 223 wgpu::ExternalTexture externalTexture = device.CreateExternalTexture(&externalDesc); in TEST_F() 275 wgpu::ExternalTexture externalTexture = device.CreateExternalTexture(&externalDesc); in TEST_F() 322 wgpu::ExternalTexture externalTexture = device.CreateExternalTexture(&externalDesc); in TEST_F()
|
D | LabelTests.cpp | 215 TEST_F(LabelTest, ExternalTexture) { in TEST_F() argument 236 wgpu::ExternalTexture externalTexture = device.CreateExternalTexture(&descriptor); in TEST_F() 243 wgpu::ExternalTexture externalTexture = device.CreateExternalTexture(&descriptor); in TEST_F() 252 wgpu::ExternalTexture externalTexture = device.CreateExternalTexture(&descriptor); in TEST_F()
|
/third_party/skia/third_party/externals/dawn/src/tests/end2end/ |
D | ExternalTextureTests.cpp | 59 wgpu::ExternalTexture externalTexture = device.CreateExternalTexture(&externalDesc); in TEST_P() 112 wgpu::ExternalTexture externalTexture = device.CreateExternalTexture(&externalDesc); in TEST_P()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/ |
D | BindGroupLayout.cpp | 138 bindingType = BindingInfoType::ExternalTexture; in ValidateBindGroupLayoutEntry() 206 case BindingInfoType::ExternalTexture: in operator !=() 252 bindingInfo.bindingType = BindingInfoType::ExternalTexture; in CreateBindGroupLayoutInfo() 334 case BindingInfoType::ExternalTexture: in SortBindingsCompare()
|
D | PassResourceUsageTracker.cpp | 127 case BindingInfoType::ExternalTexture: { in AddBindGroup() 202 case BindingInfoType::ExternalTexture: { in AddResourcesReferencedByBindGroup()
|
D | BindingInfo.h | 51 enum class BindingInfoType { Buffer, Sampler, Texture, StorageTexture, ExternalTexture }; enumerator
|
D | ExternalTexture.cpp | 135 return ObjectType::ExternalTexture; in GetType()
|
D | BindGroup.cpp | 316 case BindingInfoType::ExternalTexture: in ValidateBindGroupDescriptor() 482 BindingInfoType::ExternalTexture); in GetBindingAsExternalTexture()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/ |
D | PipelineLayoutGL.cpp | 62 case BindingInfoType::ExternalTexture: in PipelineLayout()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/metal/ |
D | PipelineLayoutMTL.mm | 61 case BindingInfoType::ExternalTexture:
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/ |
D | BindGroupLayoutD3D12.cpp | 45 case BindingInfoType::ExternalTexture: in WGPUBindingInfoToDescriptorRangeType()
|
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/ |
D | BindGroupLayoutVk.cpp | 72 case BindingInfoType::ExternalTexture: in VulkanDescriptorType()
|
D | BindGroupVk.cpp | 134 case BindingInfoType::ExternalTexture: { in BindGroup()
|
/third_party/skia/third_party/externals/dawn/src/utils/ |
D | WGPUHelpers.h | 156 BindingInitializationHelper(uint32_t binding, const wgpu::ExternalTexture& externalTexture);
|