Searched refs:shaderVariable (Results 1 – 3 of 3) sorted by relevance
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
D | frame_capture_utils.cpp | 830 void SerializeShaderVariable(JsonSerializer *json, const sh::ShaderVariable &shaderVariable) in SerializeShaderVariable() argument 833 json->addScalar("Type", shaderVariable.type); in SerializeShaderVariable() 834 json->addScalar("Precision", shaderVariable.precision); in SerializeShaderVariable() 835 json->addString("Name", shaderVariable.name); in SerializeShaderVariable() 836 json->addString("MappedName", shaderVariable.mappedName); in SerializeShaderVariable() 837 json->addVector("ArraySizes", shaderVariable.arraySizes); in SerializeShaderVariable() 838 json->addScalar("StaticUse", shaderVariable.staticUse); in SerializeShaderVariable() 839 json->addScalar("Active", shaderVariable.active); in SerializeShaderVariable() 840 for (const sh::ShaderVariable &field : shaderVariable.fields) in SerializeShaderVariable() 844 json->addString("StructOrBlockName", shaderVariable.structOrBlockName); in SerializeShaderVariable() [all …]
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/ |
D | ProgramExecutable.cpp | 675 for (const sh::ShaderVariable &shaderVariable : mLinkedOutputVaryings[shaderType]) in save() local 677 WriteShaderVar(stream, shaderVariable); in save() 680 for (const sh::ShaderVariable &shaderVariable : mLinkedInputVaryings[shaderType]) in save() local 682 WriteShaderVar(stream, shaderVariable); in save() 685 for (const sh::ShaderVariable &shaderVariable : mLinkedUniforms[shaderType]) in save() local 687 WriteShaderVar(stream, shaderVariable); in save()
|
D | Program.cpp | 806 for (const sh::ShaderVariable &shaderVariable : block.fields) in WriteShInterfaceBlock() local 808 WriteShaderVar(stream, shaderVariable); in WriteShInterfaceBlock() 983 for (const sh::ShaderVariable &shaderVariable : var.fields) in WriteShaderVar() local 985 WriteShaderVar(stream, shaderVariable); in WriteShaderVar()
|