Lines Matching refs:floatParams
1583 GLfloat *floatParams = nullptr; in GetIntegeri_v() local
1584 floatParams = new GLfloat[numParams]; in GetIntegeri_v()
1586 context->getFloatv(target, floatParams); in GetIntegeri_v()
1592 data[i] = convert_float_fixed(floatParams[i]); in GetIntegeri_v()
1596 …data[i] = (GLint)(floatParams[i] > 0.0f ? floor(floatParams[i] + 0.5) : ceil(floatParams[i] - 0.5)… in GetIntegeri_v()
1600 delete[] floatParams; in GetIntegeri_v()
2943 GLfloat *floatParams = nullptr; in GetInteger64v() local
2944 floatParams = new GLfloat[numParams]; in GetInteger64v()
2946 context->getFloatv(pname, floatParams); in GetInteger64v()
2952 data[i] = (GLint64)(convert_float_fixed(floatParams[i])); in GetInteger64v()
2956 …data[i] = (GLint64)(floatParams[i] > 0.0f ? floor(floatParams[i] + 0.5) : ceil(floatParams[i] - 0.… in GetInteger64v()
2960 delete[] floatParams; in GetInteger64v()
3026 GLfloat *floatParams = nullptr; in GetInteger64i_v() local
3027 floatParams = new GLfloat[numParams]; in GetInteger64i_v()
3029 context->getFloatv(target, floatParams); in GetInteger64i_v()
3035 data[i] = (GLint64)(convert_float_fixed(floatParams[i])); in GetInteger64i_v()
3039 …data[i] = (GLint64)(floatParams[i] > 0.0f ? floor(floatParams[i] + 0.5) : ceil(floatParams[i] - 0.… in GetInteger64i_v()
3043 delete[] floatParams; in GetInteger64i_v()