Lines Matching refs:n_columns
635 const glw::GLchar* Utils::getTypeName(TYPES type, glw::GLuint n_columns, glw::GLuint n_rows) in getTypeName() argument
657 if ((1 > n_columns) || (1 > n_rows) || (4 < n_columns) || (4 < n_rows)) in getTypeName()
665 result = float_lut[n_columns - 1][n_rows - 1]; in getTypeName()
668 result = double_lut[n_columns - 1][n_rows - 1]; in getTypeName()
818 Utils::uniformMatrixNdv Utils::getUniformMatrixNdv(const glw::Functions& gl, glw::GLuint n_columns,… in getUniformMatrixNdv() argument
822 switch (n_columns) in getUniformMatrixNdv()
886 Utils::uniformMatrixNfv Utils::getUniformMatrixNfv(const glw::Functions& gl, glw::GLuint n_columns,… in getUniformMatrixNfv() argument
890 switch (n_columns) in getUniformMatrixNfv()
4661 std::string ImplicitConversionsValidTest::getValueList(glw::GLuint n_columns, glw::GLuint n_rows) in getValueList() argument
4665 for (GLuint i = 0; i < n_columns * n_rows; ++i) in getValueList()
4667 if (i != n_columns * n_rows - 1) in getValueList()
18392 void Utils::program::uniform(const glw::GLchar* uniform_name, TYPES type, glw::GLuint n_columns, gl… in uniform() argument
18407 if (1 == n_columns) in uniform()
18414 … getUniformMatrixNdv(gl, n_columns, n_rows)(location, 1 /* count */, false, (const GLdouble*)data); in uniform()
18419 if (1 == n_columns) in uniform()
18426 getUniformMatrixNfv(gl, n_columns, n_rows)(location, 1 /* count */, false, (const GLfloat*)data); in uniform()