/third_party/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
D | CollectVariables_test.cpp | 1068 const std::vector<ShaderVariable> &inVaryings = mTranslator->getInputVaryings(); in TEST_F() 1110 const std::vector<ShaderVariable> &inVaryings = mTranslator->getInputVaryings(); in TEST_F() 1137 const std::vector<ShaderVariable> &inputVaryings = mTranslator->getInputVaryings(); in TEST_F() 1169 const std::vector<ShaderVariable> &inputVaryings = mTranslator->getInputVaryings(); in TEST_F() 1201 const std::vector<ShaderVariable> &inVaryings = mTranslator->getInputVaryings(); in TEST_F() 1240 ASSERT_TRUE(mTranslator->getInputVaryings().empty()); in TEST_F() 1271 ASSERT_TRUE(mTranslator->getInputVaryings().empty()); in TEST_F() 1302 ASSERT_TRUE(mTranslator->getInputVaryings().empty()); in TEST_F() 1336 const auto &inputVaryings = mTranslator->getInputVaryings(); in TEST_F() 1368 const auto &inputVaryings = mTranslator->getInputVaryings(); in TEST_F() [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/tests/compiler_tests/ |
D | CollectVariables_test.cpp | 1041 EXPECT_TRUE(mTranslator->getInputVaryings().empty()); in TEST_F() 1112 const auto &inputVaryings = mTranslator->getInputVaryings(); in TEST_F() 1145 const auto &inputVaryings = mTranslator->getInputVaryings(); in TEST_F() 1183 const auto &inputVaryings = mTranslator->getInputVaryings(); in TEST_F() 1204 ASSERT_TRUE(mTranslator->getInputVaryings().empty()); in TEST_F() 1236 ASSERT_TRUE(mTranslator->getInputVaryings().empty()); in TEST_F() 1268 ASSERT_TRUE(mTranslator->getInputVaryings().empty()); in TEST_F() 1303 const auto &inputVaryings = mTranslator->getInputVaryings(); in TEST_F() 1335 const auto &inputVaryings = mTranslator->getInputVaryings(); in TEST_F() 1390 const auto &inputVaryings = mTranslator->getInputVaryings(); in TEST_F() [all …]
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/ |
D | Shader.h | 73 const std::vector<sh::Varying> &getInputVaryings() const { return mInputVaryings; } in getInputVaryings() function 167 const std::vector<sh::Varying> &getInputVaryings();
|
D | Shader.cpp | 553 const std::vector<sh::Varying> &Shader::getInputVaryings() in getInputVaryings() function in gl::Shader 556 return mState.getInputVaryings(); in getInputVaryings()
|
D | Program.cpp | 1258 const std::vector<sh::Varying> &inputs = fragmentShader->getInputVaryings(); in getFragmentInputBindingInfo() 3003 const std::vector<sh::Varying> &inputVaryings = consumingShader->getInputVaryings(); in linkValidateShaderInterfaceMatching() 3072 mState.mAttachedShaders[ShaderType::Fragment]->getInputVaryings(); in linkValidateFragmentInputBindings() 3582 const auto &fragmentVaryings = fragmentShader->getInputVaryings(); in linkValidateBuiltInVaryings() 3919 mState.mAttachedShaders[ShaderType::Fragment]->getInputVaryings()) in getMergedVaryings()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | Shader.h | 75 const std::vector<sh::ShaderVariable> &getInputVaryings() const { return mInputVaryings; } in getInputVaryings() function 210 const std::vector<sh::ShaderVariable> &getInputVaryings();
|
D | Shader.cpp | 651 const std::vector<sh::ShaderVariable> &Shader::getInputVaryings() in getInputVaryings() function in gl::Shader 654 return mState.getInputVaryings(); in getInputVaryings()
|
D | Program.cpp | 1797 for (const sh::ShaderVariable &varying : shader->getInputVaryings()) in updateProgramInterfaceInputs() 3521 outputVaryings, currentShader->getInputVaryings(), previousShaderType, in linkVaryings() 3539 fragmentShader->getInputVaryings(), vertexShader->getType(), in linkVaryings()
|
D | ProgramExecutable.cpp | 894 mLinkedInputVaryings[shaderType] = shader->getInputVaryings(); in saveLinkedStateInfo()
|
D | ProgramLinkedResources.cpp | 1416 inputVaryings[shaderType] = shader->getInputVaryings(); in LinkingVariables()
|
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/ |
D | ShaderLang.cpp | 53 return &compiler->getInputVaryings(); in GetVariableList() 55 ASSERT(compiler->getOutputVaryings().empty() && compiler->getInputVaryings().empty()); in GetVariableList() 425 return &compiler->getInputVaryings(); in GetInputVaryings()
|
D | Compiler.h | 111 const std::vector<sh::Varying> &getInputVaryings() const { return mInputVaryings; } in getInputVaryings() function
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
D | ShaderLang.cpp | 492 return &compiler->getInputVaryings(); in GetInputVaryings() 518 return &compiler->getInputVaryings(); in GetVaryings() 520 ASSERT(compiler->getOutputVaryings().empty() && compiler->getInputVaryings().empty()); in GetVaryings()
|
D | Compiler.h | 128 const std::vector<sh::ShaderVariable> &getInputVaryings() const { return mInputVaryings; } in getInputVaryings() function
|
D | TranslatorMetalDirect.cpp | 672 getInputVaryings(), getOutputVariables(), getUniforms(), in translateImpl() 1118 if (!RewritePipelines(*this, *root, getInputVaryings(), getOutputVaryings(), idGen, in translateImpl()
|
D | TranslatorVulkan.cpp | 858 getInputVaryings(), getOutputVariables(), getUniforms(), in translateImpl()
|
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/ |
D | ProgramD3D.cpp | 175 return HasFlatInterpolationVarying(shader->getInputVaryings()); in FindFlatInterpolationVaryingPerShader() 177 return HasFlatInterpolationVarying(shader->getInputVaryings()) || in FindFlatInterpolationVaryingPerShader()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/ |
D | ProgramD3D.cpp | 182 return HasFlatInterpolationVarying(shader->getInputVaryings()); in FindFlatInterpolationVaryingPerShader() 184 return HasFlatInterpolationVarying(shader->getInputVaryings()) || in FindFlatInterpolationVaryingPerShader()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
D | frame_capture_utils.cpp | 898 SerializeShaderVariablesVector(json, shaderState.getInputVaryings()); in SerializeShaderState()
|