Index: gpu/command_buffer/service/disk_cache_proto.proto |
diff --git a/gpu/command_buffer/service/disk_cache_proto.proto b/gpu/command_buffer/service/disk_cache_proto.proto |
index b1059a6338694f59e2587294c6530a69ba545568..6d78f4b9146fd403bb694c8f04522636277fd0e0 100644 |
--- a/gpu/command_buffer/service/disk_cache_proto.proto |
+++ b/gpu/command_buffer/service/disk_cache_proto.proto |
@@ -27,11 +27,17 @@ message ShaderVaryingProto { |
optional bool is_invariant = 3; |
} |
+message ShaderOutputVariableProto { |
+ optional ShaderVariableProto basic = 1; |
+ optional int32 location = 2; |
+} |
+ |
message ShaderProto { |
optional bytes sha = 1; |
repeated ShaderAttributeProto attribs = 2; |
repeated ShaderUniformProto uniforms = 3; |
repeated ShaderVaryingProto varyings = 4; |
+ repeated ShaderOutputVariableProto output_variables = 5; |
} |
message GpuProgramProto { |