Home
last modified time | relevance | path

Searched refs:cpuType (Results 1 – 16 of 16) sorted by relevance

/external/skia/src/gpu/graphite/
DAttribute.h22 VertexAttribType cpuType, in Attribute() argument
24 : fName(name), fCPUType(cpuType), fGPUType(gpuType) { in Attribute()
34 constexpr VertexAttribType cpuType() const { return fCPUType; } in cpuType() function
/external/skia/src/gpu/ganesh/gl/
DGrGLVertexArray.cpp82 GrVertexAttribType cpuType, in set() argument
107 array->fCPUType != cpuType || in set()
115 const AttribLayout& layout = attrib_layout(cpuType); in set()
132 array->fCPUType = cpuType; in set()
DGrGLVertexArray.h43 GrVertexAttribType cpuType,
/external/skia/src/gpu/ganesh/
DGrGeometryProcessor.h76 GrVertexAttribType cpuType, in Attribute() argument
78 : fName(name), fCPUType(cpuType), fGPUType(gpuType) { in Attribute()
85 GrVertexAttribType cpuType, in Attribute() argument
88 : fName(name), fCPUType(cpuType), fGPUType(gpuType), fOffset(SkToU32(offset)) { in Attribute()
99 constexpr GrVertexAttribType cpuType() const { return fCPUType; } in cpuType() function
DGrGeometryProcessor.cpp502 return Attribute(fCurr->name(), fCurr->cpuType(), fCurr->gpuType(), fImplicitOffset); in operator *()
561 b->addBits(8, attr.isInitialized() ? attr.cpuType() : 0xff, "attrType"); in addToKey()
/external/tensorflow/tensorflow/tools/android/test/
Dbuild.gradle37 def cpuType = 'armeabi-v7a'
40 def nativeOutDir = 'libs/' + cpuType
110 '--cpu=' + cpuType, \
/external/autotest/client/site_tests/platform_MemCheck/
Dplatform_MemCheck.py34 cpuType = utils.get_cpu_arch()
37 if cpuType == "arm":
/external/skia/src/gpu/graphite/mtl/
DMtlGraphicsPipeline.mm107 MTLVertexFormat format = attribute_type_to_mtlformat(attribute.cpuType());
128 MTLVertexFormat format = attribute_type_to_mtlformat(attribute.cpuType());
/external/skia/src/gpu/ganesh/ops/
DQuadPerEdgeAA.cpp639 b->addBits(1, (kFloat3_GrVertexAttribType == fLocalCoord.cpuType()), "localCoordsType"); in addToKey()
644 b->addBits(1, (kFloat4_GrVertexAttribType == fColor.cpuType()), "colorType"); in addToKey()
729 if (gp.fLocalCoord.cpuType() == kFloat3_GrVertexAttribType) { in makeProgramImpl()
/external/skia/src/gpu/ganesh/d3d/
DGrD3DPipelineStateBuilder.cpp253 attrib_type_to_format(attrib.cpuType()), in setup_vertex_input_layout()
263 attrib_type_to_format(attrib.cpuType()), in setup_vertex_input_layout()
/external/skia/src/gpu/ganesh/vk/
DGrVkPipeline.cpp108 vkAttrib.format = attrib_type_to_vkformat(attrib.cpuType()); in setup_vertex_input_state()
116 vkAttrib.format = attrib_type_to_vkformat(attrib.cpuType()); in setup_vertex_input_state()
/external/skia/tools/gpu/
DTestOps.cpp76 bool wideColor() const { return fInColor.cpuType() != kUByte4_norm_GrVertexAttribType; } in wideColor()
/external/skia/src/gpu/ganesh/dawn/
DGrDawnProgramBuilder.cpp344 attribute.format = to_dawn_vertex_format(attrib.cpuType()); in Build()
361 attribute.format = to_dawn_vertex_format(attrib.cpuType()); in Build()
/external/skia/src/gpu/ganesh/mtl/
DGrMtlPipelineStateBuilder.mm202 MTLVertexFormat format = attribute_type_to_mtlformat(attribute.cpuType());
233 MTLVertexFormat format = attribute_type_to_mtlformat(attribute.cpuType());
/external/skia/src/gpu/ganesh/gl/builders/
DGrGLProgramBuilder.cpp128 fAttributes[i].fCPUType = a.cpuType(); in computeCountsAndStrides()
/external/skia/src/gpu/graphite/dawn/
DDawnGraphicsPipeline.cpp149 vertexAttribute.format = attribute_type_to_dawn(attr.cpuType()); in create_vertex_attributes()