Home
last modified time | relevance | path

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

/external/deqp-deps/amber/src/
Dpipeline.h401 void AddSampler(Sampler* sampler, uint32_t descriptor_set, uint32_t binding);
403 void AddSampler(Sampler* sampler, const std::string& arg_name);
405 void AddSampler(Sampler* sampler, uint32_t arg_no);
407 void AddSampler(uint32_t sampler_mask,
Dpipeline.cc612 void Pipeline::AddSampler(Sampler* sampler, in AddSampler() function in amber::Pipeline
623 void Pipeline::AddSampler(Sampler* sampler, const std::string& arg_name) { in AddSampler() function in amber::Pipeline
641 void Pipeline::AddSampler(Sampler* sampler, uint32_t arg_no) { in AddSampler() function in amber::Pipeline
658 void Pipeline::AddSampler(uint32_t mask, in AddSampler() function in amber::Pipeline
Dclspv_helper.cc202 helper->pipeline->AddSampler(helper->constants[mask_id], in ParseExtendedInst()
Dpipeline_test.cc541 p.AddSampler(s.get(), "arg_c"); in TEST_F()
810 p.AddSampler(16, 0, 0); in TEST_F()
811 p.AddSampler(41, 0, 1); in TEST_F()
Dscript.h198 Result AddSampler(std::unique_ptr<Sampler> sampler) { in AddSampler() function
/external/intel-media-driver/media_driver/agnostic/common/cm/
Dcm_media_state.h76 int AddSampler(void *samplerParam, int index, int bteIndex = -1);
Dcm_media_state.cpp362 int CmMediaState::AddSampler(void *samplerParam, int index, int bteIndex) in AddSampler() function in CmMediaState
Dcm_kernel_ex.cpp661 uint32_t bteIdx = mediaState->AddSampler(param, kernelIdx); in UpdateCurbe()
788 mediaState->AddSampler((MHW_SAMPLER_STATE_PARAM *)it->second, kernelIdx, it->first); in LoadReservedSamplers()
/external/deqp-deps/amber/src/amberscript/
Dparser.cc1447 pipeline->AddSampler(s, descriptor_set, binding); in ParsePipelineBind()
1459 pipeline->AddSampler(sampler, token->AsString()); in ParsePipelineBind()
1465 pipeline->AddSampler(sampler, token->AsUint32()); in ParsePipelineBind()
3973 return script_->AddSampler(std::move(sampler)); in ParseSampler()