Home
last modified time | relevance | path

Searched refs:d_props (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/gallium/state_trackers/clover/core/
Dproperty.hpp225 obj(const D *d_props) { in obj() argument
228 while (d_props && *d_props) { in obj()
229 auto key = *d_props++; in obj()
230 auto value = *d_props++; in obj()
248 std::vector<D> d_props; in desc() local
251 d_props.push_back(prop.first); in desc()
252 d_props.push_back(prop.second.template as<D>()); in desc()
255 d_props.push_back(0); in desc()
257 return d_props; in desc()
/external/mesa3d/src/gallium/state_trackers/clover/api/
Dcontext.cpp30 clCreateContext(const cl_context_properties *d_props, cl_uint num_devs, in clCreateContext() argument
35 auto props = obj<property_list_tag>(d_props); in clCreateContext()
62 clCreateContextFromType(const cl_context_properties *d_props, in clCreateContextFromType() argument
85 return clCreateContext(d_props, num_devices, devs.data(), pfn_notify, in clCreateContextFromType()