From aa375a66800e577d928c92d7cd405a43ffdec728 Mon Sep 17 00:00:00 2001 From: Csaba Hruska Date: Mon, 8 Feb 2016 15:01:43 +0100 Subject: add info field to pipeline --- ddl/out/LambdaCube.IR.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ddl/out/LambdaCube.IR.swift') diff --git a/ddl/out/LambdaCube.IR.swift b/ddl/out/LambdaCube.IR.swift index eb4b35f..cfc61da 100644 --- a/ddl/out/LambdaCube.IR.swift +++ b/ddl/out/LambdaCube.IR.swift @@ -1,5 +1,5 @@ // generated file, do not modify! -// 2016-01-28T13:15:30.803775Z +// 2016-02-08T13:33:23.674070000000Z typealias StreamName = Int @@ -470,6 +470,7 @@ enum Backend { enum Pipeline { case Pipeline(Pipeline_Data) struct Pipeline_Data { + var info : String var backend : Backend var textures : Array var samplers : Array @@ -1336,6 +1337,7 @@ extension Pipeline { switch self { case .Pipeline(let v): return [ "tag" : "Pipeline" + , "info" : v.info.toJSON , "backend" : v.backend.toJSON , "textures" : v.textures.toJSON , "samplers" : v.samplers.toJSON -- cgit v1.2.3