Home
last modified time | relevance | path

Searched refs:outputVar (Results 1 – 17 of 17) sorted by relevance

/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/statements/switch_statements/
Dswitch_statements.ts25 let outputVar: string;
28 outputVar = 'a';
31 outputVar = 'b';
34 outputVar = 'c';
37 outputVar = 'd';
40 outputVar = 'e';
43 return outputVar;
53 let outputVar: string;
56 outputVar = 'a';
59 outputVar = 'b';
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/compiler/translator/
DTranslatorGLSL.cpp143 for (const auto &outputVar : mOutputVariables) in translate() local
147 if (outputVar.name == "gl_FragColor") in translate()
153 else if (outputVar.name == "gl_FragData") in translate()
162 if (outputVar.name == "gl_SecondaryFragColorEXT") in translate()
168 else if (outputVar.name == "gl_SecondaryFragDataEXT") in translate()
DTranslatorVulkan.cpp768 for (const OutputVariable &outputVar : mOutputVariables) in translate() local
770 if (outputVar.name == "gl_FragColor") in translate()
776 else if (outputVar.name == "gl_FragData") in translate()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DTranslatorGLSL.cpp143 for (const auto &outputVar : mOutputVariables) in translate() local
147 if (outputVar.name == "gl_FragColor") in translate()
153 else if (outputVar.name == "gl_FragData") in translate()
162 if (outputVar.name == "gl_SecondaryFragColorEXT") in translate()
168 else if (outputVar.name == "gl_SecondaryFragDataEXT") in translate()
DTranslatorVulkan.cpp1086 for (const ShaderVariable &outputVar : mOutputVariables) in translateImpl() local
1088 if (outputVar.name == "gl_SampleMask") in translateImpl()
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DShaderModule.cpp741 for (const auto& outputVar : entryPoint.output_variables) { in ReflectShaderUsingTint() local
743 !outputVar.has_location_decoration, in ReflectShaderUsingTint()
745 outputVar.name); in ReflectShaderUsingTint()
747 uint32_t location = outputVar.location_decoration; in ReflectShaderUsingTint()
751 outputVar.name, location, kMaxInterStageShaderLocation); in ReflectShaderUsingTint()
756 TintComponentTypeToInterStageComponentType(outputVar.component_type)); in ReflectShaderUsingTint()
759 outputVar.composition_type)); in ReflectShaderUsingTint()
762 TintInterpolationTypeToInterpolationType(outputVar.interpolation_type)); in ReflectShaderUsingTint()
766 outputVar.interpolation_sampling)); in ReflectShaderUsingTint()
829 for (const auto& outputVar : entryPoint.output_variables) { in ReflectShaderUsingTint() local
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DProgramGL.cpp369 const sh::ShaderVariable &outputVar = in link() local
371 if (outputVar.location == -1 || outputVar.index == -1) in link()
377 ASSERT(outputVar.index == -1); in link()
380 outputVar.mappedName.c_str()); in link()
392 const sh::ShaderVariable &outputVar = in link() local
394 if (outputVar.location == -1 || outputVar.index == -1) in link()
400 ASSERT(outputVar.index == -1); in link()
403 outputVar.mappedName.c_str()); in link()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
DProgramGL.cpp357 const sh::OutputVariable &outputVar = in link() local
359 if (outputVar.location == -1) in link()
365 ASSERT(outputVar.index == -1); in link()
368 outputVar.mappedName.c_str()); in link()
380 const sh::OutputVariable &outputVar = in link() local
382 if (outputVar.location == -1 || outputVar.index == -1) in link()
388 ASSERT(outputVar.index == -1); in link()
391 outputVar.mappedName.c_str()); in link()
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DProgramExecutable.cpp609 for (const auto &outputVar : getOutputLocations()) in save() local
611 stream->writeInt(outputVar.arrayIndex); in save()
612 stream->writeIntOrNegOne(outputVar.index); in save()
613 stream->writeBool(outputVar.ignored); in save()
632 for (const auto &outputVar : getSecondaryOutputLocations()) in save() local
634 stream->writeInt(outputVar.arrayIndex); in save()
635 stream->writeIntOrNegOne(outputVar.index); in save()
636 stream->writeBool(outputVar.ignored); in save()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DGlslangWrapper.cpp535 const sh::OutputVariable &outputVar = outputVariables[outputLocation.index]; in AssignOutputLocations() local
542 std::string name = outputVar.name; in AssignOutputLocations()
543 if (outputVar.isArray()) in AssignOutputLocations()
546 if (outputVar.isArrayOfArrays()) in AssignOutputLocations()
553 if (outputVar.location != -1) in AssignOutputLocations()
555 locationString = "location = " + Str(outputVar.location); in AssignOutputLocations()
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/statements/throw_statements/
Dthrow_statements.ts25 let outputVar: string;
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DDynamicHLSL.cpp103 for (auto &outputVar : outputVariables) in FindOutputAtLocation() local
105 if (outputVar.outputLocation == location && outputVar.outputIndex == index) in FindOutputAtLocation()
107 return &outputVar; in FindOutputAtLocation()
DProgramD3D.cpp80 for (auto &outputVar : shaderOutputVars) in GetMaxOutputIndex() local
82 if (outputVar.outputLocation == location) in GetMaxOutputIndex()
84 maxIndex = std::max(maxIndex, outputVar.outputIndex); in GetMaxOutputIndex()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/d3d/
DDynamicHLSL.cpp103 for (auto &outputVar : outputVariables) in FindOutputAtLocation() local
105 if (outputVar.outputLocation == location && outputVar.outputIndex == index) in FindOutputAtLocation()
107 return &outputVar; in FindOutputAtLocation()
DProgramD3D.cpp74 for (auto &outputVar : shaderOutputVars) in GetMaxOutputIndex() local
76 if (outputVar.outputLocation == location) in GetMaxOutputIndex()
78 maxIndex = std::max(maxIndex, outputVar.outputIndex); in GetMaxOutputIndex()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
Dglslang_wrapper_utils.cpp305 const sh::ShaderVariable &outputVar = outputVariables[outputLocation.index]; in AssignSecondaryOutputLocations() local
308 if (outputVar.location != -1) in AssignSecondaryOutputLocations()
310 location = outputVar.location; in AssignSecondaryOutputLocations()
314 AddLocationInfo(variableInfoMapOut, gl::ShaderType::Fragment, outputVar.mappedName, in AssignSecondaryOutputLocations()
318 if (outputVar.index == -1) in AssignSecondaryOutputLocations()
331 for (const auto &outputVar : shaderOutputs) in AssignSecondaryOutputLocations() local
333 if (outputVar.name == "gl_SecondaryFragColorEXT") in AssignSecondaryOutputLocations()
339 else if (outputVar.name == "gl_SecondaryFragDataEXT") in AssignSecondaryOutputLocations()
366 const sh::ShaderVariable &outputVar = outputVariables[outputLocation.index]; in AssignOutputLocations() local
369 if (outputVar.location != -1) in AssignOutputLocations()
[all …]
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/
DProgram.cpp4676 for (const auto &outputVar : mState.getOutputLocations()) in serialize() local
4678 stream.writeInt(outputVar.arrayIndex); in serialize()
4679 stream.writeIntOrNegOne(outputVar.index); in serialize()
4680 stream.writeInt(outputVar.ignored); in serialize()
4684 for (const auto &outputVar : mState.getSecondaryOutputLocations()) in serialize() local
4686 stream.writeInt(outputVar.arrayIndex); in serialize()
4687 stream.writeIntOrNegOne(outputVar.index); in serialize()
4688 stream.writeInt(outputVar.ignored); in serialize()