Home
last modified time | relevance | path

Searched refs:texelFetchStaticUse (Results 1 – 9 of 9) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/compiler/translator/
DShaderVars.cpp56 texelFetchStaticUse(false), in ShaderVariable()
94 texelFetchStaticUse(other.texelFetchStaticUse), in ShaderVariable()
126 texelFetchStaticUse = other.texelFetchStaticUse; in operator =()
143 isPatch != other.isPatch || texelFetchStaticUse != other.texelFetchStaticUse || in operator ==()
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/vulkan/
DFlagSamplersWithTexelFetch.cpp62 uniform.texelFetchStaticUse = true; in visitAggregate()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/vulkan/
DTextureVk.h215 bool texelFetchStaticUse) const;
221 bool texelFetchStaticUse) const;
489 bool shouldDecodeSRGB(ContextVk *contextVk, GLenum srgbDecode, bool texelFetchStaticUse) const;
DTextureVk.cpp2773 bool texelFetchStaticUse) const in shouldDecodeSRGB()
2793 if (srgbDecode == GL_SKIP_DECODE_EXT && !texelFetchStaticUse) in shouldDecodeSRGB()
2803 bool texelFetchStaticUse) const in getReadImageViewAndRecordUse()
2815 if (shouldDecodeSRGB(contextVk, srgbDecode, texelFetchStaticUse)) in getReadImageViewAndRecordUse()
2827 bool texelFetchStaticUse) const in getFetchImageViewAndRecordUse()
2837 if (shouldDecodeSRGB(contextVk, srgbDecode, texelFetchStaticUse)) in getFetchImageViewAndRecordUse()
DProgramExecutableVk.cpp1845 contextVk, unit.srgbDecode, samplerUniform.texelFetchStaticUse); in updateTexturesDescriptorSet()
1851 contextVk, unit.srgbDecode, samplerUniform.texelFetchStaticUse); in updateTexturesDescriptorSet()
/third_party/skia/third_party/externals/angle2/include/GLSLANG/
DShaderVars.h239 bool texelFetchStaticUse; member
/third_party/skia/third_party/externals/angle2/src/libANGLE/
DProgramLinkedResources.cpp489 linkedUniform.texelFetchStaticUse = variable.texelFetchStaticUse; in visitNamedVariable()
DProgram.cpp1004 stream->writeBool(var.texelFetchStaticUse); in WriteShaderVar()
1040 var->texelFetchStaticUse = stream->readBool(); in LoadShaderVar()
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/
Dframe_capture_utils.cpp857 json->addScalar("TexelFetchStaticUse", shaderVariable.texelFetchStaticUse); in SerializeShaderVariable()