Searched refs:outputVariable (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/angle/tests/compiler_tests/
H A DCollectVariables_test.cpp73 const sh::Attribute &outputVariable = outputVariables[0]; local
75 EXPECT_EQ(0u, outputVariable.arraySize);
76 EXPECT_EQ(-1, outputVariable.location);
77 EXPECT_GLENUM_EQ(GL_MEDIUM_FLOAT, outputVariable.precision);
78 EXPECT_TRUE(outputVariable.staticUse);
79 EXPECT_GLENUM_EQ(GL_FLOAT_VEC4, outputVariable.type);
80 EXPECT_EQ("out_fragColor", outputVariable.name);
99 const sh::Attribute &outputVariable = outputVariables[0]; local
101 EXPECT_EQ(0u, outputVariable.arraySize);
102 EXPECT_EQ(5, outputVariable
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
H A DDynamicHLSL.cpp454 const PixelShaderOutputVariable &outputVariable = GetOutputAtLocation(outputVariables, location); local
456 declarationHLSL += " " + HLSLTypeString(outputVariable.type) + " " + outputVariable.name +
459 copyHLSL += " output." + outputVariable.name + " = " + outputVariable.source + ";\n";
828 const sh::ShaderVariable &outputVariable = shaderOutputVars[outputLocation.index]; local
832 ASSERT(outputVariable.staticUse);
835 outputKeyVariable.type = outputVariable.type;
975 const sh::Attribute &outputVariable = shaderOutputVars[outputVariableIndex]; local
976 const int baseLocation = outputVariable
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/
H A DProgramBinary.cpp507 const VariableLocation &outputVariable = locationIt->second;
509 if (outputVariable.name == baseName && (arrayIndex == GL_INVALID_INDEX || arrayIndex == outputVariable.element))

Completed in 286 milliseconds