| 32 | } |
| 33 | |
| 34 | void GeometryProcessor::setVertexAttributes(const Attribute* attrs, int attrCount) { |
| 35 | for (int i = 0; i < attrCount; ++i) { |
| 36 | auto& attribute = attrs[i]; |
| 37 | if (!attribute.empty()) { |
| 38 | attributes.push_back(attribute); |
| 39 | } |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | void GeometryProcessor::setTransformDataHelper(const Matrix& uvMatrix, UniformBuffer* uniformBuffer, |
| 44 | FPCoordTransformIter* transformIter) const { |
no test coverage detected