Home
last modified time | relevance | path

Searched refs:locationIndex (Results 1 – 8 of 8) sorted by relevance

/external/skqp/src/gpu/mtl/
DGrMtlVaryingHandler.mm11 int locationIndex;
12 for (locationIndex = 0; locationIndex < vars.count(); locationIndex++) {
13 GrShaderVar& var = vars[locationIndex];
18 location.appendf("location = %d", locationIndex);
25 SkASSERT(locationIndex <= 15);
/external/skqp/src/gpu/vk/
DGrVkVaryingHandler.cpp79 int locationIndex = 0; in finalize_helper() local
83 location.appendf("location = %d", locationIndex); in finalize_helper()
93 locationIndex += elementSize * numElements; in finalize_helper()
98 SkASSERT(locationIndex <= 64); in finalize_helper()
/external/skia/src/gpu/vk/
DGrVkVaryingHandler.cpp85 int locationIndex = 0; in finalize_helper() local
88 location.appendf("location = %d", locationIndex); in finalize_helper()
98 locationIndex += elementSize * numElements; in finalize_helper()
103 SkASSERT(locationIndex <= 64); in finalize_helper()
/external/skia/src/gpu/mtl/
DGrMtlVaryingHandler.mm19 int locationIndex = 0;
27 location.appendf("location = %d", locationIndex);
29 ++locationIndex;
35 SkASSERT(locationIndex <= 32);
/external/skia/src/gpu/
DGrSPIRVVaryingHandler.cpp91 int locationIndex = 0; in finalize_helper() local
94 location.appendf("location = %d", locationIndex); in finalize_helper()
104 locationIndex += elementSize * numElements; in finalize_helper()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
DMutableMethodImplementation.java107 int locationIndex = mapCodeAddressToIndex(codeAddressToIndex, debugCodeAddress); in MutableMethodImplementation() local
108 MethodLocation debugLocation = instructionList.get(locationIndex); in MutableMethodImplementation()
/external/angle/src/libANGLE/renderer/d3d/d3d11/
DStateManager11.cpp199 for (auto locationIndex : executable.getActiveAttribLocationsMask()) in SortAttributesByLayout() local
201 int d3dSemantic = locationToSemantic[locationIndex]; in SortAttributesByLayout()
209 const auto *arrayAttrib = &vertexArrayAttribs[locationIndex]; in SortAttributesByLayout()
216 ASSERT(currentValueAttribs[locationIndex].attribute); in SortAttributesByLayout()
217 (*sortedAttributesOut)[d3dSemantic] = &currentValueAttribs[locationIndex]; in SortAttributesByLayout()
/external/angle/src/libANGLE/renderer/d3d/
DProgramD3D.cpp3099 for (size_t locationIndex : attributesMask) in updateCachedInputLayout() local
3101 int d3dSemantic = mAttribLocationToD3DSemantic[locationIndex]; in updateCachedInputLayout()
3110 GetVertexFormatID(vertexAttributes[locationIndex], in updateCachedInputLayout()
3111 state.getVertexAttribCurrentValue(locationIndex).Type); in updateCachedInputLayout()