HomeSort by relevance Sort by last modified time
    Searched refs:getDataTypeName (Results 1 - 25 of 59) sorted by null

1 2 3

  /external/deqp/modules/glshared/
glsShaderConstExprTests.cpp 132 shaderTemplateParams["CASE_BASE_TYPE"] = glu::getDataTypeName(outType);
140 string typeName = glu::getDataTypeName((glu::DataType)(inType + compCount)); // results in float, vec2, vec3, vec4 progression (same for other primitive types)
181 const string scalarCaseName = string(cases[caseNdx].name) + "_" + typeName + "_" + glu::getDataTypeName(inType);
183 expressionTemplateParams["MT"] = glu::getDataTypeName(inType);
glsShaderLibraryCase.cpp     [all...]
glsUniformBlockCase.cpp 258 stream << entry.name << " { type = " << glu::getDataTypeName(entry.type)
861 src << glu::getDataTypeName(type.getBasicType()) << " " << name;
876 src << glu::getDataTypeName(curType->getBasicType());
951 src << glu::getDataTypeName(entry.type) << "(";
1007 const char* typeName = glu::getDataTypeName(elementType);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fFboTestUtil.cpp 94 "layout(location = 0) out highp ") + glu::getDataTypeName(outputType) + " o_color;\n"
97 " o_color = " + glu::getDataTypeName(outputType) + "(u_color);\n"
175 "layout(location = 0) out highp ") + glu::getDataTypeName(outputType) + " o_color;\n"
183 " o_color = " + glu::getDataTypeName(outputType) + "(u_gradientMin + (u_gradientMax-u_gradientMin)*fv);\n"
240 << "layout(location = 0) out highp " << glu::getDataTypeName(outputType) << " o_color0;\n";
246 src << "uniform " << precision << " " << glu::getDataTypeName(samplerTypes[samplerNdx]) << " u_sampler" << samplerNdx << ";\n";
266 src << " o_color0 = " << glu::getDataTypeName(outputType) << "(out0 * u_outScale0 + u_outBias0);\n";
446 "uniform highp " + glu::getDataTypeName(samplerType) + " u_sampler0;\n"
450 "layout(location = 0) out highp " + glu::getDataTypeName(outputType) + " o_color;\n"
453 " o_color = " + glu::getDataTypeName(outputType) + "(vec4(texture(u_sampler0, v_coord)) * u_scale + u_bias);\n
    [all...]
es3fShaderIndexingTests.cpp 314 params.insert(pair<string, string>("VAR_TYPE", getDataTypeName(varType)));
420 params.insert(pair<string, string>("VAR_TYPE", getDataTypeName(varType)));
564 params.insert(pair<string, string>("VAR_TYPE", getDataTypeName(varType)));
754 params.insert(pair<string, string>("VAR_TYPE", getDataTypeName(varType)));
935 params.insert(pair<string, string>("MAT_TYPE", getDataTypeName(varType)));
936 params.insert(pair<string, string>("VEC_TYPE", getDataTypeName(vecType)));
996 string name = string(getDataTypeName(varType)) + "_" + vertAccessName + "_write_" + fragAccessName + "_read";
    [all...]
es3fShaderDerivateTests.cpp 378 vertexParams["DATATYPE"] = glu::getDataTypeName(coordType);
649 fragmentParams["DATATYPE"] = glu::getDataTypeName(m_dataType);
715 fragmentParams["OUTPUT_TYPE"] = glu::getDataTypeName(packToInt ? glu::TYPE_UINT_VEC4 : glu::TYPE_FLOAT_VEC4);
718 fragmentParams["DATATYPE"] = glu::getDataTypeName(m_dataType);
892 fragmentParams["OUTPUT_TYPE"] = glu::getDataTypeName(packToInt ? glu::TYPE_UINT_VEC4 : glu::TYPE_FLOAT_VEC4);
895 fragmentParams["DATATYPE"] = glu::getDataTypeName(m_dataType);
    [all...]
es3fShaderMatrixTests.cpp     [all...]
es3fDefaultVertexAttributeTests.cpp 321 << "Attribute type: " << glu::getDataTypeName(m_dataType) << "\n"
403 const char* const vectorType = glu::getDataTypeName((glu::isDataTypeMatrix(m_dataType)) ? (glu::getDataTypeVector(glu::TYPE_FLOAT, vectorSize)) : (glu::isDataTypeVector(m_dataType)) ? (glu::getDataTypeVector(glu::TYPE_FLOAT, vectorSize)) : (glu::TYPE_FLOAT));
409 "in highp " << glu::getDataTypeName(m_dataType) << " a_value;\n"
es3fInstancedRenderingTests.cpp 184 string typeName = glu::getDataTypeName(m_rgbAttrType);
711 typesGroup->addChild(new InstancedRenderingCase(m_context, glu::getDataTypeName(type), "",
es3fShaderLoopTests.cpp 426 params.insert(pair<string, string>("LOOP_VAR_TYPE", getDataTypeName(loopCountDataType)));
    [all...]
es3fUniformBlockTests.cpp 419 const char* typeName = glu::getDataTypeName(type);
456 const char* typeName = glu::getDataTypeName(type);
619 const char* typeName = glu::getDataTypeName(type);
  /external/deqp/modules/gles2/functional/
es2fShaderIndexingTests.cpp 341 params.insert(pair<string, string>("VAR_TYPE", getDataTypeName(varType)));
454 params.insert(pair<string, string>("VAR_TYPE", getDataTypeName(varType)));
602 params.insert(pair<string, string>("VAR_TYPE", getDataTypeName(varType)));
796 params.insert(pair<string, string>("VAR_TYPE", getDataTypeName(varType)));
962 params.insert(pair<string, string>("MAT_TYPE", getDataTypeName(varType)));
963 params.insert(pair<string, string>("VEC_TYPE", getDataTypeName(vecType)));
    [all...]
es2fShaderMatrixTests.cpp 828 const char* typeName = getDataTypeName(in.dataType);
846 inValue = string(m_isVertexCase ? "a_" : "v_") + getDataTypeName(in.dataType);
924 op << " " << getPrecisionName(resultPrec) << " " << getDataTypeName(resultType) << " tmpValue = " << inValue0 << ";\n";
944 op << " " << getPrecisionName(resultPrec) << " " << getDataTypeName(resultType) << " res = " << operationValue0 << " " << getOperationName(m_op) << " " << operationValue1 << ";\n";
948 op << " " << getPrecisionName(resultPrec) << " " << getDataTypeName(resultType) << " res = " << getOperationName(m_op) << operationValue0 << ";\n";
952 op << " " << getPrecisionName(resultPrec) << " " << getDataTypeName(resultType) << " res = " << operationValue0 << getOperationName(m_op) << ";\n";
956 op << " " << getPrecisionName(resultPrec) << " " << getDataTypeName(resultType) << " res = " << getOperationName(m_op) << "(" << operationValue0 << ", " << operationValue1 << ");\n";
960 op << " " << getPrecisionName(resultPrec) << " " << getDataTypeName(resultType) << " res = " << operationValue0 << ";\n";
    [all...]
es2fDefaultVertexAttributeTests.cpp 245 << "Attribute type: " << glu::getDataTypeName(m_dataType) << "\n"
327 const char* const vectorType = glu::getDataTypeName((glu::isDataTypeMatrix(m_dataType)) ? (glu::getDataTypeVector(glu::TYPE_FLOAT, vectorSize)) : (glu::isDataTypeVector(m_dataType)) ? (glu::getDataTypeVector(glu::TYPE_FLOAT, vectorSize)) : (glu::TYPE_FLOAT));
332 "attribute highp " << glu::getDataTypeName(m_dataType) << " a_value;\n"
  /external/deqp/modules/gles31/functional/
es31fShaderSharedVarTests.cpp 96 str << getDataTypeName(basicType) << ", work group size = " << workGroupSize;
118 const char* typeName = getDataTypeName(m_basicType);
372 basicTypeGroup->addChild(new SharedBasicVarCase(m_context, getDataTypeName(DataType(basicType)), DataType(basicType), PRECISION_LAST, workGroupSize));
379 const string name = string(getDataTypeName(DataType(basicType))) + "_" + getPrecisionName(Precision(precision));
es31fUniformBlockTests.cpp 207 const char* typeName = glu::getDataTypeName(type);
238 const char* typeName = glu::getDataTypeName(type);
es31fFboTestUtil.cpp 83 << "layout(location = 0) out highp " << glu::getDataTypeName(outputType) << " o_color0;\n";
89 src << "uniform " << precision << " " << glu::getDataTypeName(samplerTypes[samplerNdx]) << " u_sampler" << samplerNdx << ";\n";
109 src << " o_color0 = " << glu::getDataTypeName(outputType) << "(out0 * u_outScale0 + u_outBias0);\n";
292 "uniform highp " + glu::getDataTypeName(samplerType) + " u_sampler0;\n"
297 "layout(location = 0) out highp " + glu::getDataTypeName(outputType) + " o_color;\n"
300 " o_color = " + glu::getDataTypeName(outputType) + "(vec4(texture(u_sampler0, vec4(v_coord, u_layer))) * u_scale + u_bias);\n"
es31fUniformLocationTests.cpp 329 const char* const typeName = glu::getDataTypeName(scalarType);
567 const char* const typeName = glu::getDataTypeName(scalarType);
759 const string name = string(getDataTypeName(type)) + "_" + stageNames[stageNdx];
788 const string name = string(getDataTypeName(type)) + "_" + stageNames[stageNdx];
816 const string name = string(getDataTypeName(type)) + "_" + stageNames[stageNdx];
    [all...]
es31fSSBOLayoutTests.cpp 815 const char* typeName = glu::getDataTypeName(type);
860 const char* typeName = glu::getDataTypeName(type);
891 const char* typeName = glu::getDataTypeName(type);
    [all...]
es31fLayoutBindingTests.cpp 926 const std::string texCoordType = glu::getDataTypeName(getSamplerTexCoordType());
927 const std::string samplerType = glu::getDataTypeName(glu::getDataTypeFromGLType(m_samplerType));
    [all...]
es31fProgramInterfaceQueryTestCase.cpp 353 m_testCtx.getLog() << tcu::TestLog::Message << "Verifying type, expecting " << glu::getDataTypeName(variable->getBasicType()) << tcu::TestLog::EndMessage;
357 m_testCtx.getLog() << tcu::TestLog::Message << "\tError, got " << glu::getDataTypeName(glu::getDataTypeFromGLType(propValue)) << tcu::TestLog::EndMessage;
383 m_testCtx.getLog() << tcu::TestLog::Message << "Verifying type, expecting " << glu::getDataTypeName(builtins[ndx].type) << tcu::TestLog::EndMessage;
387 m_testCtx.getLog() << tcu::TestLog::Message << "\tError, got " << glu::getDataTypeName(glu::getDataTypeFromGLType(propValue)) << tcu::TestLog::EndMessage;
    [all...]
  /external/deqp/framework/opengl/
gluShaderUtil.hpp 182 const char* getDataTypeName (DataType dataType);
gluShaderUtil.cpp 168 const char* getDataTypeName (DataType dataType)
gluVarType.cpp 373 str << glu::getDataTypeName(curType->getBasicType());
  /external/deqp/modules/gles3/performance/
es3pTextureCases.cpp 158 fragSrc << "uniform " << glu::getPrecisionName(samplerPrec) << " " << glu::getDataTypeName(samplerType) << " u_sampler" << texNdx << ";\n";

Completed in 733 milliseconds

1 2 3