Home | History | Annotate | Download | only in glshared

Lines Matching defs:ref

1232 					const GLint ref = rnd.getInt(-1000, 1000);
1234 gl.glTexParameterIiv(m_target, m_pname, &ref);
1237 verifyStateTextureParamFloat(result, gl, m_target, m_pname, (float)ref, m_type);
1246 const GLuint ref = (glw::GLuint)rnd.getInt(0, 1000);
1248 gl.glTexParameterIuiv(m_target, m_pname, &ref);
1251 verifyStateTextureParamFloat(result, gl, m_target, m_pname, (float)ref, m_type);
1261 const GLfloat ref = rnd.getFloat((float)minLimit, 1000.f);
1263 gl.glTexParameterf(m_target, m_pname, ref);
1266 verifyStateTextureParamFloat(result, gl, m_target, m_pname, ref, m_type);
1273 const GLint ref = rnd.getInt(minLimit, 1000);
1275 gl.glTexParameteri(m_target, m_pname, ref);
1278 verifyStateTextureParamFloat(result, gl, m_target, m_pname, (float)ref, m_type);
1335 const GLint ref = rnd.getInt(0, 64000);
1336 const GLuint uRef = (glw::GLuint)ref;
1340 gl.glTexParameterIiv(m_target, m_pname, &ref);
1350 verifyStateTextureParamInteger(result, gl, m_target, m_pname, ref, m_type);
1357 const GLint ref = rnd.getInt(0, 64000);
1359 gl.glTexParameteri(m_target, m_pname, ref);
1362 verifyStateTextureParamInteger(result, gl, m_target, m_pname, ref, m_type);
1372 const GLint ref = rnd.getInt(1, 64000);
1376 gl.glTexParameterf(m_target, m_pname, ((GLfloat)ref) + nonSignificantOffsets[offsetNdx]);
1379 verifyStateTextureParamInteger(result, gl, m_target, m_pname, ref, m_type);
2069 const GLint ref = rnd.getInt(-1000, 1000);
2071 gl.glSamplerParameterIiv(m_target, m_pname, &ref);
2074 verifyStateSamplerParamFloat(result, gl, m_target, m_pname, (float)ref, m_type);
2083 const GLuint ref = (glw::GLuint)rnd.getInt(0, 1000);
2085 gl.glSamplerParameterIuiv(m_target, m_pname, &ref);
2088 verifyStateSamplerParamFloat(result, gl, m_target, m_pname, (float)ref, m_type);
2098 const GLfloat ref = rnd.getFloat((float)minLimit, 1000.f);
2100 gl.glSamplerParameterf(m_target, m_pname, ref);
2103 verifyStateSamplerParamFloat(result, gl, m_target, m_pname, ref, m_type);
2110 const GLint ref = rnd.getInt(minLimit, 1000);
2112 gl.glSamplerParameteri(m_target, m_pname, ref);
2115 verifyStateSamplerParamFloat(result, gl, m_target, m_pname, (float)ref, m_type);