Home
last modified time | relevance | path

Searched refs:queryValue (Results 1 – 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DVertexArrayGL.cpp71 GLint queryValue; in ValidateStateHelperGetIntegerv() local
72 ANGLE_GL_TRY(context, functions->getIntegerv(pname, &queryValue)); in ValidateStateHelperGetIntegerv()
73 if (localValue != static_cast<GLuint>(queryValue)) in ValidateStateHelperGetIntegerv()
75 WARN() << localName << " (" << localValue << ") != " << driverName << " (" << queryValue in ValidateStateHelperGetIntegerv()
93 GLint queryValue; in ValidateStateHelperGetVertexAttribiv() local
94 ANGLE_GL_TRY(context, functions->getVertexAttribiv(index, pname, &queryValue)); in ValidateStateHelperGetVertexAttribiv()
95 if (localValue != static_cast<GLuint>(queryValue)) in ValidateStateHelperGetVertexAttribiv()
98 << index << "] (" << queryValue << ")"; in ValidateStateHelperGetVertexAttribiv()
1028 GLint queryValue; in validateState() local
1029 ANGLE_GL_TRY(context, functions->getIntegerv(GL_MAX_VERTEX_ATTRIBS, &queryValue)); in validateState()
[all …]
DStateManagerGL.cpp46 GLint queryValue; in ValidateStateHelper() local
47 functions->getIntegerv(pname, &queryValue); in ValidateStateHelper()
48 if (localValue != static_cast<GLuint>(queryValue)) in ValidateStateHelper()
50 WARN() << localName << " (" << localValue << ") != " << driverName << " (" << queryValue in ValidateStateHelper()
/third_party/node/deps/undici/src/lib/cache/
Dcache.js779 const queryValue = requestQuery.headersList.get(fieldValue)
783 if (requestValue !== queryValue) {
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/
DesextcTessellationShaderUtils.cpp99 glw::GLuint queryValue = 0; in captureTessellationData() local
104 m_gl.getQueryObjectuiv(m_qo_pg_id, GL_QUERY_RESULT, &queryValue); in captureTessellationData()
108 program.n_data_vertices = ((unsigned int)queryValue); in captureTessellationData()