/third_party/vk-gl-cts/framework/egl/ |
H A D | egluStrUtil.cpp | 168 const char* attribName = getConfigAttribName(attrib); in operator <<() local 170 if (attribName) in operator <<() 173 str << attribName << ", " << getConfigAttribValueStr(attrib, fmt.attribs[pos+1]); in operator <<() 208 const char* attribName = getSurfaceAttribName(attrib); in operator <<() local 210 if (attribName) in operator <<() 213 str << attribName << ", " << getSurfaceAttribValueStr(attrib, fmt.attribs[pos+1]); in operator <<() 248 const char* attribName = getContextAttribName(attrib); in operator <<() local 250 if (attribName) in operator <<() 253 str << attribName << ", " << getContextAttribValueStr(attrib, fmt.attribs[pos+1]); in operator <<()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/wgl/ |
H A D | wgl_utils.cpp | 74 int QueryWGLFormatAttrib(HDC dc, int format, int attribName, const FunctionsWGL *functions) in QueryWGLFormatAttrib() argument 78 !functions->getPixelFormatAttribivARB(dc, format, 0, 1, &attribName, &result)) in QueryWGLFormatAttrib()
|
H A D | wgl_utils.h | 27 int QueryWGLFormatAttrib(HDC dc, int format, int attribName, const FunctionsWGL *functions);
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/ |
H A D | D3D11InputLayoutCacheTest.cpp | 105 std::string attribName = attribNameStr.str(); in TEST_P() local 107 GLint location = glGetAttribLocation(program, attribName.c_str()); in TEST_P()
|
/third_party/vk-gl-cts/modules/gles3/functional/ |
H A D | es3fTransformFeedbackTests.cpp | 350 string attribName = getAttributeName(name, vecIter.getPath()); in genShaderSources() local 352 vtx << "in " << glu::declare(attribType, attribName.c_str()) << ";\n"; in genShaderSources() 393 string attribName = getAttributeName(name, vecIter.getPath()); in genShaderSources() local 398 vtx << "\t" << name << vecIter << " = " << attribName << ";\n"; in genShaderSources() local 512 string attribName = getAttributeName(varName.c_str(), fullPath); in computeTransformFeedbackOutputs() local 513 const Attribute* attrib = &(*std::find_if(attributes.begin(), attributes.end(), AttributeNameEquals(attribName))); in computeTransformFeedbackOutputs()
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsShaderExecUtil.cpp | 600 const std::string attribName = "a_" + symbol.name; in execute() local 606 vertexArrays.push_back(glu::va::Float(attribName, vecSize, numValues, 0, (const float*)ptr)); in execute() 608 vertexArrays.push_back(glu::va::Int32(attribName, vecSize, numValues, 0, (const deInt32*)ptr)); in execute() 610 vertexArrays.push_back(glu::va::Uint32(attribName, vecSize, numValues, 0, (const deUint32*)ptr)); in execute() 618 vertexArrays.push_back(glu::va::Float(attribName, colNdx, numRows, numValues, stride, ((const float*)ptr) + colNdx * numRows)); in execute()
|
H A D | glsVertexArrayTests.cpp | 1114 std::stringstream attribName; in render() local 1115 attribName << "a_" << m_arrays[arrayNdx]->getAttribNdx(); in render() 1117 deUint32 loc = m_ctx.getAttribLocation(program, attribName.str().c_str()); in render() 1133 std::stringstream attribName; in render() local 1134 attribName << "a_" << m_arrays[arrayNdx]->getAttribNdx(); in render() 1136 deUint32 loc = m_ctx.getAttribLocation(program, attribName.str().c_str()); in render()
|
H A D | glsShaderLibraryCase.cpp | 1250 string attribName = attribPrefix + valueName; 1251 int attribLoc = gl.getAttribLocation(vertexProgramID, attribName.c_str()); 1254 log << TestLog::Message << "Warning: no location found for attribute '" << attribName << "'" << TestLog::EndMessage;
|
H A D | glsDrawTest.cpp | 1884 std::stringstream attribName; in render() local 1885 attribName << "a_" << arrayNdx; in render() 1887 deUint32 loc = m_ctx.getAttribLocation(m_programID, attribName.str().c_str()); in render() 2042 std::stringstream attribName; in render() local 2043 attribName << "a_" << arrayNdx; in render() 2045 deUint32 loc = m_ctx.getAttribLocation(m_programID, attribName.str().c_str()); in render()
|
/third_party/vk-gl-cts/external/openglcts/modules/common/ |
H A D | glcShaderLibraryCase.cpp | 417 string attribName = attribPrefix + valueName; in execute() local 418 int attribLoc = gl.getAttribLocation(programID, attribName.c_str()); in execute() 421 log << TestLog::Message << "Warning: no location found for attribute '" << attribName << "'" in execute()
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/localeconverter/ |
H A D | XLIFF2ICUConverter.java | 807 private String getAttributeValue(Node sNode, String attribName){ in getAttributeValue() argument 812 Node attr = attributes.getNamedItem(attribName); in getAttributeValue()
|