Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
Dglslang_wrapper_utils.cpp1076 void writePendingDeclarations(spirv::Blob *blobOut);
1382 void SpirvIDDiscoverer::writePendingDeclarations(spirv::Blob *blobOut) in writePendingDeclarations() argument
1386 mFloatId = SpirvTransformerBase::GetNewId(blobOut); in writePendingDeclarations()
1387 spirv::WriteTypeFloat(blobOut, mFloatId, spirv::LiteralInteger(32)); in writePendingDeclarations()
1392 mVec4Id = SpirvTransformerBase::GetNewId(blobOut); in writePendingDeclarations()
1393 spirv::WriteTypeVector(blobOut, mVec4Id, mFloatId, spirv::LiteralInteger(4)); in writePendingDeclarations()
1398 mVec4OutTypePointerId = SpirvTransformerBase::GetNewId(blobOut); in writePendingDeclarations()
1399 spirv::WriteTypePointer(blobOut, mVec4OutTypePointerId, spv::StorageClassOutput, mVec4Id); in writePendingDeclarations()
1404 mIntId = SpirvTransformerBase::GetNewId(blobOut); in writePendingDeclarations()
1405 spirv::WriteTypeInt(blobOut, mIntId, spirv::LiteralInteger(32), spirv::LiteralInteger(1)); in writePendingDeclarations()
[all …]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DUtilsVk.cpp620 angle::spirv::Blob *blobOut) in InsertPreamble() argument
622 spirv::WriteCapability(blobOut, spv::CapabilityShader); in InsertPreamble()
623 spirv::WriteCapability(blobOut, spv::CapabilityInputAttachment); in InsertPreamble()
626 spirv::WriteCapability(blobOut, spv::CapabilityStencilExportEXT); in InsertPreamble()
627 spirv::WriteExtension(blobOut, "SPV_EXT_shader_stencil_export"); in InsertPreamble()
631 spirv::WriteMemoryModel(blobOut, spv::AddressingModelLogical, spv::MemoryModelGLSL450); in InsertPreamble()
647 spirv::WriteEntryPoint(blobOut, spv::ExecutionModelFragment, spirv::IdRef(kIdMain), "main", in InsertPreamble()
650 spirv::WriteExecutionMode(blobOut, spirv::IdRef(kIdMain), spv::ExecutionModeOriginUpperLeft, in InsertPreamble()
654 spirv::WriteExecutionMode(blobOut, spirv::IdRef(kIdMain), spv::ExecutionModeDepthReplacing, in InsertPreamble()
657 spirv::WriteSource(blobOut, spv::SourceLanguageGLSL, spirv::LiteralInteger(450), nullptr, in InsertPreamble()
[all …]