Home
last modified time | relevance | path

Searched refs:mOutputVariableTypes (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libANGLE/
DProgramExecutable.cpp280 mOutputVariableTypes.clear(); in reset()
427 mOutputVariableTypes.push_back(stream->readInt<GLenum>()); in load()
618 stream->writeInt(mOutputVariableTypes.size()); in save()
619 for (const auto &outputVariableType : mOutputVariableTypes) in save()
1203 ASSERT(mOutputVariableTypes.empty()); in linkValidateOutputVariables()
1227 if (location >= mOutputVariableTypes.size()) in linkValidateOutputVariables()
1229 mOutputVariableTypes.resize(location + 1, GL_NONE); in linkValidateOutputVariables()
1233 mOutputVariableTypes[location] = VariableComponentType(outputVariable.type); in linkValidateOutputVariables()
1234 ComponentType componentType = GLenumToComponentType(mOutputVariableTypes[location]); in linkValidateOutputVariables()
DProgramExecutable.h476 std::vector<GLenum> mOutputVariableTypes; variable