Home
last modified time | relevance | path

Searched refs:AddSampler (Results 1 – 6 of 6) sorted by relevance

/external/deqp-deps/amber/src/
Dpipeline.h356 void AddSampler(Sampler* sampler, uint32_t descriptor_set, uint32_t binding);
358 void AddSampler(Sampler* sampler, const std::string& arg_name);
360 void AddSampler(Sampler* sampler, uint32_t arg_no);
362 void AddSampler(uint32_t sampler_mask,
Dpipeline.cc584 void Pipeline::AddSampler(Sampler* sampler, in AddSampler() function in amber::Pipeline
595 void Pipeline::AddSampler(Sampler* sampler, const std::string& arg_name) { in AddSampler() function in amber::Pipeline
613 void Pipeline::AddSampler(Sampler* sampler, uint32_t arg_no) { in AddSampler() function in amber::Pipeline
630 void Pipeline::AddSampler(uint32_t mask, in AddSampler() function in amber::Pipeline
Dscript.h138 Result AddSampler(std::unique_ptr<Sampler> sampler) { in AddSampler() function
Dclspv_helper.cc202 helper->pipeline->AddSampler(helper->constants[mask_id], in ParseExtendedInst()
Dpipeline_test.cc537 p.AddSampler(s.get(), "arg_c"); in TEST_F()
806 p.AddSampler(16, 0, 0); in TEST_F()
807 p.AddSampler(41, 0, 1); in TEST_F()
/external/deqp-deps/amber/src/amberscript/
Dparser.cc1253 pipeline->AddSampler(s, descriptor_set, binding); in ParsePipelineBind()
1265 pipeline->AddSampler(sampler, token->AsString()); in ParsePipelineBind()
1271 pipeline->AddSampler(sampler, token->AsUint32()); in ParsePipelineBind()
3672 return script_->AddSampler(std::move(sampler)); in ParseSampler()