Home
last modified time | relevance | path

Searched refs:ExternalTexture (Results 1 – 25 of 44) sorted by relevance

12

/third_party/skia/third_party/externals/tint/src/ast/
Dexternal_texture.cc19 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()
Dexternal_texture.h26 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;
Dexternal_texture_test.cc26 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/
Dexternal_texture_type.cc19 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()
Dexternal_texture_type.h26 class ExternalTexture : public Castable<ExternalTexture, Texture> {
29 ExternalTexture();
32 ExternalTexture(ExternalTexture&&);
33 ~ExternalTexture() override;
Dexternal_texture_type_test.cc31 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()
Ddepth_texture_type_test.cc33 EXPECT_FALSE(ty->Is<ExternalTexture>()); in TEST_F()
Dsampled_texture_type_test.cc33 EXPECT_FALSE(ty->Is<ExternalTexture>()); in TEST_F()
Dmultisampled_texture_type_test.cc34 EXPECT_FALSE(ty->Is<ExternalTexture>()); in TEST_F()
/third_party/skia/third_party/externals/tint/src/transform/
Dexternal_texture_transform.cc60 ->Is<sem::ExternalTexture>()) { in Run()
110 if (::tint::Is<ast::ExternalTexture>(var->type)) { in Run()
Dmultiplanar_external_texture.cc84 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/
DExternalTextureTests.cpp171 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()
DLabelTests.cpp215 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/
DExternalTextureTests.cpp59 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/
DBindGroupLayout.cpp138 bindingType = BindingInfoType::ExternalTexture; in ValidateBindGroupLayoutEntry()
206 case BindingInfoType::ExternalTexture: in operator !=()
252 bindingInfo.bindingType = BindingInfoType::ExternalTexture; in CreateBindGroupLayoutInfo()
334 case BindingInfoType::ExternalTexture: in SortBindingsCompare()
DPassResourceUsageTracker.cpp127 case BindingInfoType::ExternalTexture: { in AddBindGroup()
202 case BindingInfoType::ExternalTexture: { in AddResourcesReferencedByBindGroup()
DBindingInfo.h51 enum class BindingInfoType { Buffer, Sampler, Texture, StorageTexture, ExternalTexture }; enumerator
DExternalTexture.cpp135 return ObjectType::ExternalTexture; in GetType()
DBindGroup.cpp316 case BindingInfoType::ExternalTexture: in ValidateBindGroupDescriptor()
482 BindingInfoType::ExternalTexture); in GetBindingAsExternalTexture()
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
DPipelineLayoutGL.cpp62 case BindingInfoType::ExternalTexture: in PipelineLayout()
/third_party/skia/third_party/externals/dawn/src/dawn_native/metal/
DPipelineLayoutMTL.mm61 case BindingInfoType::ExternalTexture:
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DBindGroupLayoutD3D12.cpp45 case BindingInfoType::ExternalTexture: in WGPUBindingInfoToDescriptorRangeType()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DBindGroupLayoutVk.cpp72 case BindingInfoType::ExternalTexture: in VulkanDescriptorType()
DBindGroupVk.cpp134 case BindingInfoType::ExternalTexture: { in BindGroup()
/third_party/skia/third_party/externals/dawn/src/utils/
DWGPUHelpers.h156 BindingInitializationHelper(uint32_t binding, const wgpu::ExternalTexture& externalTexture);

12