diff options
Diffstat (limited to 'misc')
-rw-r--r-- | misc/proto/binary_program.proto | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/misc/proto/binary_program.proto b/misc/proto/binary_program.proto deleted file mode 100644 index 780664ef9c..0000000000 --- a/misc/proto/binary_program.proto +++ /dev/null @@ -1,19 +0,0 @@ -// Protocol Version 1 - -package mapboxgl.binary_program; - -option optimize_for = LITE_RUNTIME; - -message binding { - required string name = 1; - required uint32 value = 2; -} - -message binary_program { - required uint32 format = 1; - required bytes code = 2; - repeated binding attribute = 3; - repeated binding uniform = 4; - optional string identifier = 5; - repeated binding texture = 6; -} |