Lines Matching defs:param
53 * @param funcName Verified function name
54 * @param target Target for which texture is binded
55 * @param pname Parameter name
56 * @param error Generated error code
57 * @param expectedError Expected error code
78 * @param funcName Verified function name
79 * @param mesage Error message
80 * @param error Generated error code
81 * @param expectedError Expected error code
100 * @param target Texture target
123 * @param gl GL functions
124 * @param target Texture target
125 * @param format Texture internal format
126 * @param pageSizeX Texture page size reference for X dimension
127 * @param pageSizeY Texture page size reference for X dimension
128 * @param pageSizeZ Texture page size reference for X dimension
145 * @param target GL functions
146 * @param state Texture current state
147 * @param level Texture mipmap level
148 * @param width Texture output width
149 * @param height Texture output height
150 * @param depth Texture output depth
174 * @param gl GL API functions
175 * @param id Id of texture
176 * @param tex_type Type of texture
186 * @param gl GL functions
187 * @param out_id Id of texture
206 * @param gl GL functions
207 * @param id Id of texture
217 * @param gl GL functions
218 * @param target Texture target
219 * @param levels Number of levels
220 * @param internal_format Internal format of texture
221 * @param width Width of texture
222 * @param height Height of texture
223 * @param depth Depth of texture
259 * @param gl GL functions
260 * @param target Texture target
261 * @param format Format of data
262 * @param type Type of data
263 * @param out_data Buffer for data
273 * @param gl GL functions
274 * @param target Texture target
275 * @param level Mipmap level
276 * @param x X offset
277 * @param y Y offset
278 * @param z Z offset
279 * @param width Width of texture
280 * @param height Height of texture
281 * @param depth Depth of texture
282 * @param format Format of data
283 * @param type Type of data
284 * @param pixels Buffer with image data
322 * @param context Rendering context
423 * @param gl GL API functions
424 * @param target Target for which texture is binded
425 * @param expectedError Expected error code (default value GL_NO_ERROR)
553 * @param gl GL API functions
554 * @param target Target for which texture is binded
555 * @param expectedError Expected error code (default value GL_NO_ERROR)
683 * @param gl GL API functions
684 * @param target Target for which texture is binded
685 * @param expectedError Expected error code (default value GL_NO_ERROR)
727 * @param gl GL API functions
728 * @param target Target for which texture is binded
729 * @param pname Parameter name
730 * @param expected Expected value (int because function is designed to query only int and boolean parameters)
794 * @param context Rendering context
917 * @param context Rendering context
996 * @param context Rendering context
1006 * @param context Rendering context
1145 * @param gl GL API functions
1146 * @param target Target for which texture is binded
1147 * @param format Texture internal format
1195 * @param gl GL API functions
1196 * @param target Target for which texture is binded
1197 * @param format Texture internal format
1241 const IntPair& param = *iter;
1245 gl.texParameteri(target, param.first, param.second);
1246 result = SparseTextureUtils::verifyQueryError(mLog, "glTexParameteri", target, param.first,
1252 gl.texParameterf(target, param.first, (GLfloat)param.second);
1253 result = SparseTextureUtils::verifyQueryError(mLog, "glTexParameterf", target, param.first,
1259 GLint value = param.second;
1260 gl.texParameteriv(target, param.first, &value);
1261 result = SparseTextureUtils::verifyQueryError(mLog, "glTexParameteriv", target, param.first,
1267 GLfloat value = (GLfloat)param.second;
1268 gl.texParameterfv(target, param.first, &value);
1269 result = SparseTextureUtils::verifyQueryError(mLog, "glTexParameterfv", target, param.first,
1275 GLint value = param.second;
1276 gl.texParameterIiv(target, param.first, &value);
1277 result = SparseTextureUtils::verifyQueryError(mLog, "glTexParameterIiv", target, param.first,
1283 GLuint value = param.second;
1284 gl.texParameterIuiv(target, param.first, &value);
1285 result = SparseTextureUtils::verifyQueryError(mLog, "glTexParameterIuiv", target, param.first,
1298 * @param gl GL API functions
1299 * @param target Target for which texture is binded
1300 * @param format Texture internal format
1357 * @param gl GL API functions
1358 * @param target Target for which texture is binded
1359 * @param format Texture internal format
1433 * @param gl GL API functions
1434 * @param target Target for which texture is binded
1435 * @param format Texture internal format
1611 * @param context Rendering context
1623 * @param context Rendering context
1624 * @param name Test name
1625 * @param description Test description
1759 * @param gl GL API functions
1760 * @param target Target for which texture is binded
1761 * @param format Texture internal format
1762 * @param texture Texture object
1763 * @param xOffset Texture commitment x offset
1764 * @param yOffset Texture commitment y offset
1765 * @param zOffset Texture commitment z offset
1766 * @param width Texture commitment width
1767 * @param height Texture commitment height
1768 * @param depth Texture commitment depth
1769 * @param commit Commit or de-commit indicator
1784 * @param target Target for which texture is binded
1785 * @param format Texture internal format
1798 * @param gl GL API functions
1799 * @param target Target for which texture is binded
1800 * @param format Texture internal format
1801 * @param texture Texture object
1833 * @param gl GL API functions
1834 * @param target Target for which texture is binded
1835 * @param format Texture internal format
1836 * @param texture Texture object
1837 * @param levels Texture mipmaps level
1862 * @param gl GL API functions
1863 * @param target Target for which texture is binded
1864 * @param format Texture internal format
1865 * @param texture Texture object
1866 * @param levels Texture mipmaps level
1891 * @param gl GL API functions
1892 * @param target Target for which texture is binded
1893 * @param format Texture internal format
1894 * @param texture Texture object
1936 * @param gl GL API functions
1937 * @param target Target for which texture is binded
1938 * @param format Texture internal format
1939 * @param texture Texture object
1940 * @param level Texture mipmap level
2055 * @param gl GL API functions
2056 * @param target Target for which texture is binded
2057 * @param format Texture internal format
2058 * @param texture Texture object
2059 * @param level Texture mipmap level
2097 * @param target Target for which texture is binded
2098 * @param level Texture mipmap level
2124 * @param target Target for which texture is binded
2125 * @param level Texture mipmap level
2150 * @param gl GL API functions
2151 * @param target Target for which texture is binded
2152 * @param format Texture internal format
2153 * @param texture Texture object
2271 * @param gl GL API functions
2272 * @param target Target for which texture is binded
2273 * @param format Texture internal format
2274 * @param texture Texture object
2329 * @param context Rendering context
2410 * @param gl GL API functions
2411 * @param target Target for which texture is binded
2412 * @param format Texture internal format
2413 * @param texture Texture object
2414 * @param xOffset Texture commitment x offset
2415 * @param yOffset Texture commitment y offset
2416 * @param zOffset Texture commitment z offset
2417 * @param width Texture commitment width
2418 * @param height Texture commitment height
2419 * @param depth Texture commitment depth
2420 * @param commit Commit or de-commit indicator
2434 * @param context Rendering context.