Home
last modified time | relevance | path

Searched refs:imageInternalFormat (Results 1 – 16 of 16) sorted by relevance

/external/angle/src/compiler/translator/
DUtilsHLSL.cpp70 HLSLTextureGroup TextureGroup(const TBasicType type, TLayoutImageInternalFormat imageInternalFormat) in TextureGroup() argument
122 switch (imageInternalFormat) in TextureGroup()
141 switch (imageInternalFormat) in TextureGroup()
157 switch (imageInternalFormat) in TextureGroup()
174 switch (imageInternalFormat) in TextureGroup()
193 switch (imageInternalFormat) in TextureGroup()
209 switch (imageInternalFormat) in TextureGroup()
226 switch (imageInternalFormat) in TextureGroup()
246 switch (imageInternalFormat) in TextureGroup()
263 switch (imageInternalFormat) in TextureGroup()
[all …]
DUtilsHLSL.h94 TLayoutImageInternalFormat imageInternalFormat = EiifUnspecified);
97 TLayoutImageInternalFormat imageInternalFormat = EiifUnspecified);
100 TLayoutImageInternalFormat imageInternalFormat = EiifUnspecified);
102 TLayoutImageInternalFormat imageInternalFormat = EiifUnspecified);
104 TLayoutImageInternalFormat imageInternalFormat);
106 const char *RWTextureString(const TBasicType type, TLayoutImageInternalFormat imageInternalFormat);
109 TLayoutImageInternalFormat imageInternalFormat);
111 TLayoutImageInternalFormat imageInternalFormat);
DImageFunctionHLSL.cpp26 TextureGroupSuffix(imageFunction.image, imageFunction.imageInternalFormat)); in GetImageReference()
38 RWTextureGroupSuffix(imageFunction.image, imageFunction.imageInternalFormat)); in GetImageReference()
179 suffix = ImmutableString(TextureTypeSuffix(image, imageInternalFormat)); in name()
183 suffix = ImmutableString(RWTextureTypeSuffix(image, imageInternalFormat)); in name()
304 TLayoutImageInternalFormat imageInternalFormat, in useImageFunction() argument
310 imageFunction.imageInternalFormat = imageInternalFormat; in useImageFunction()
312 imageFunction.type = imageFunction.getDataType(imageInternalFormat); in useImageFunction()
DImageFunctionHLSL.h30 TLayoutImageInternalFormat imageInternalFormat,
69 TLayoutImageInternalFormat imageInternalFormat; member
DBuildSPIRV.h94 TLayoutImageInternalFormat imageInternalFormat = EiifUnspecified; member
176 static_cast<uint8_t>(type.typeSpec.blockStorage | type.imageInternalFormat << 3), in operator()
430 spv::ImageFormat getImageFormat(TLayoutImageInternalFormat imageInternalFormat);
DBaseTypes.h1295 imageInternalFormat == EiifUnspecified && primitiveType == EptUndefined && in isEmpty()
1311 blockStorage != EbsUnspecified || imageInternalFormat != EiifUnspecified); in isCombinationValid()
1340 TLayoutImageInternalFormat imageInternalFormat; member
1379 imageInternalFormat(EiifUnspecified), in TLayoutQualifier()
DQualifierTypes.cpp759 if (rightQualifier.imageInternalFormat != EiifUnspecified) in JoinLayoutQualifiers()
761 joinedQualifier.imageInternalFormat = rightQualifier.imageInternalFormat; in JoinLayoutQualifiers()
DBuildSPIRV.cpp45 a.secondarySize == b.secondarySize && a.imageInternalFormat == b.imageInternalFormat && in operator ==()
400 spirvType.imageInternalFormat = type.getLayoutQualifier().imageInternalFormat; in getSpirvType()
631 const spv::ImageFormat imageFormat = getImageFormat(type.imageInternalFormat); in declareType()
1065 spv::ImageFormat SPIRVBuilder::getImageFormat(TLayoutImageInternalFormat imageInternalFormat) in getImageFormat() argument
1067 switch (imageInternalFormat) in getImageFormat()
DParseContext.cpp1691 switch (layoutQualifier.imageInternalFormat) in nonEmptyDeclarationErrorCheck()
1739 switch (layoutQualifier.imageInternalFormat) in nonEmptyDeclarationErrorCheck()
1758 checkInternalFormatIsNotSpecified(identifierLocation, layoutQualifier.imageInternalFormat); in nonEmptyDeclarationErrorCheck()
3553 checkInternalFormatIsNotSpecified(typeQualifier.line, layoutQualifier.imageInternalFormat); in parseGlobalLayoutQualifier()
4389 checkInternalFormatIsNotSpecified(nameLine, blockLayoutQualifier.imageInternalFormat); in addInterfaceBlock()
5034 qualifier.imageInternalFormat = EiifRGBA32F; in parseLayoutQualifier()
5039 qualifier.imageInternalFormat = EiifRGBA16F; in parseLayoutQualifier()
5044 qualifier.imageInternalFormat = EiifR32F; in parseLayoutQualifier()
5049 qualifier.imageInternalFormat = EiifRGBA8; in parseLayoutQualifier()
5054 qualifier.imageInternalFormat = EiifRGBA8_SNORM; in parseLayoutQualifier()
[all …]
DOutputGLSLBase.cpp196 if (layoutQualifier.imageInternalFormat != EiifUnspecified) in getCommonLayoutQualifiers()
200 << getImageInternalFormatString(layoutQualifier.imageInternalFormat); in getCommonLayoutQualifiers()
1377 if (IsImage(type.getBasicType()) && layoutQualifier.imageInternalFormat != EiifUnspecified) in NeedsToWriteLayoutQualifier()
DResourcesHLSL.cpp532 type.getBasicType(), type.getLayoutQualifier().imageInternalFormat); in uniformsHeader()
538 type.getBasicType(), type.getLayoutQualifier().imageInternalFormat); in uniformsHeader()
DCollectVariables.cpp1084 GetImageInternalFormatType(variable.getType().getLayoutQualifier().imageInternalFormat); in recordUniform()
DOutputHLSL.cpp2403 name, type.getBasicType(), type.getLayoutQualifier().imageInternalFormat, in visitAggregate()
/external/angle/src/compiler/translator/tree_ops/vulkan/
DRewriteR32fImages.cpp26 type.getLayoutQualifier().imageInternalFormat == EiifR32F; in IsR32fImage()
286 layoutQualifier.imageInternalFormat = EiifR32UI; in visitDeclaration()
DMonomorphizeUnsupportedFunctionsInVulkanGLSL.cpp335 type.isImage() && type.getLayoutQualifier().imageInternalFormat == EiifR32F; in processFunctionCall()
/external/angle/src/tests/compiler_tests/
DShaderImage_test.cpp106 ASSERT_EQ(internalFormat, myImageLayoutQualifier.imageInternalFormat); in CheckImageDeclaration()