Home
last modified time | relevance | path

Searched refs:shaderVariable (Results 1 – 3 of 3) sorted by relevance

/external/angle/src/libANGLE/capture/
Dframe_capture_utils.cpp926 void SerializeShaderVariable(JsonSerializer *json, const sh::ShaderVariable &shaderVariable) in SerializeShaderVariable() argument
929 json->addScalar("Type", shaderVariable.type); in SerializeShaderVariable()
930 json->addScalar("Precision", shaderVariable.precision); in SerializeShaderVariable()
931 json->addString("Name", shaderVariable.name); in SerializeShaderVariable()
932 json->addString("MappedName", shaderVariable.mappedName); in SerializeShaderVariable()
933 json->addVector("ArraySizes", shaderVariable.arraySizes); in SerializeShaderVariable()
934 json->addScalar("StaticUse", shaderVariable.staticUse); in SerializeShaderVariable()
935 json->addScalar("Active", shaderVariable.active); in SerializeShaderVariable()
936 for (const sh::ShaderVariable &field : shaderVariable.fields) in SerializeShaderVariable()
940 json->addString("StructOrBlockName", shaderVariable.structOrBlockName); in SerializeShaderVariable()
[all …]
/external/angle/src/libANGLE/
DProgramExecutable.cpp606 for (const sh::ShaderVariable &shaderVariable : mLinkedOutputVaryings[shaderType]) in save() local
608 WriteShaderVar(stream, shaderVariable); in save()
611 for (const sh::ShaderVariable &shaderVariable : mLinkedInputVaryings[shaderType]) in save() local
613 WriteShaderVar(stream, shaderVariable); in save()
620 for (const sh::ShaderVariable &shaderVariable : mLinkedOutputVaryings[shaderType]) in save() local
622 WriteShaderVar(stream, shaderVariable); in save()
625 for (const sh::ShaderVariable &shaderVariable : mLinkedInputVaryings[shaderType]) in save() local
627 WriteShaderVar(stream, shaderVariable); in save()
DProgram.cpp942 for (const sh::ShaderVariable &shaderVariable : var.fields) in WriteShaderVar() local
944 WriteShaderVar(stream, shaderVariable); in WriteShaderVar()