Lines Matching defs:rows
175 int rows = ((int)v.type - (int)SkRuntimeEffect::Uniform::Type::kFloat) + 1;
177 for (int c = 0; c < v.count; ++c, f += rows) {
181 ImGui::DragScalarN(name.c_str(), ImGuiDataType_Float, f, rows, 1.0f);
189 int rows = ((int)v.type - (int)SkRuntimeEffect::Uniform::Type::kFloat2x2) + 2;
190 int cols = rows;
193 for (int c = 0; c < cols; ++c, f += rows) {
197 ImGui::DragScalarN(name.c_str(), ImGuiDataType_Float, f, rows, 1.0f);
206 int rows = ((int)v.type - (int)SkRuntimeEffect::Uniform::Type::kInt) + 1;
208 for (int c = 0; c < v.count; ++c, i += rows) {
212 ImGui::DragScalarN(name.c_str(), ImGuiDataType_S32, i, rows, 1.0f);