blob: 164609aed9838cd7a96c2640e76caf2a92d881f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/usr/bin/env python
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import os
import sys
import gpu_tools.skpicture_printer
if __name__ == "__main__":
sys.exit(gpu_tools.skpicture_printer.Main())
|