ddf36e73ac
Review URL: https://codereview.appspot.com/6946052 git-svn-id: http://skia.googlecode.com/svn/trunk@6822 2bbb7eff-a529-9590-31e7-b0007b416f81
83 lines
2.3 KiB
Python
83 lines
2.3 KiB
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.
|
|
|
|
|
|
""" Helper functions to be used in bench_pictures.cfg. """
|
|
|
|
|
|
def Config(**kwargs):
|
|
config = {}
|
|
for key in kwargs:
|
|
config[key] = kwargs[key]
|
|
return config
|
|
|
|
|
|
def BitmapConfig(**kwargs):
|
|
return Config(device='bitmap', **kwargs)
|
|
|
|
|
|
def GPUConfig(**kwargs):
|
|
return Config(device='gpu', **kwargs)
|
|
|
|
|
|
def TiledBitmapConfig(tile_x, tile_y, **kwargs):
|
|
return BitmapConfig(mode=['tile', str(tile_x), str(tile_y)], **kwargs)
|
|
|
|
|
|
def TiledGPUConfig(tile_x, tile_y, **kwargs):
|
|
return GPUConfig(mode=['tile', str(tile_x), str(tile_y)], **kwargs)
|
|
|
|
|
|
def CopyTilesConfig(tile_x, tile_y, **kwargs):
|
|
return BitmapConfig(mode=['copyTile', str(tile_x), str(tile_y)], **kwargs)
|
|
|
|
|
|
def RecordConfig(**kwargs):
|
|
return BitmapConfig(mode='record', **kwargs)
|
|
|
|
|
|
def PlaybackCreationConfig(**kwargs):
|
|
return BitmapConfig(mode='playbackCreation', **kwargs)
|
|
|
|
|
|
def MultiThreadTileConfig(threads, tile_x, tile_y, **kwargs):
|
|
return TiledBitmapConfig(multi=str(threads), tile_x=tile_x, tile_y=tile_y,
|
|
**kwargs)
|
|
|
|
|
|
def RTreeConfig(tile_x, tile_y, mode, **kwargs):
|
|
return BitmapConfig(mode=mode, bbh=['rtree', str(tile_x), str(tile_y)],
|
|
**kwargs)
|
|
|
|
|
|
def GridConfig(tile_x, tile_y, mode, **kwargs):
|
|
return BitmapConfig(mode=mode, bbh=['grid', str(tile_x), str(tile_y)],
|
|
**kwargs)
|
|
|
|
|
|
def RecordRTreeConfig(tile_x, tile_y, **kwargs):
|
|
return RTreeConfig(tile_x=tile_x, tile_y=tile_y, mode='record', **kwargs)
|
|
|
|
|
|
def PlaybackCreationRTreeConfig(tile_x, tile_y, **kwargs):
|
|
return RTreeConfig(tile_x=tile_x, tile_y=tile_y, mode='playbackCreation',
|
|
**kwargs)
|
|
|
|
|
|
def TileRTreeConfig(tile_x, tile_y, **kwargs):
|
|
return RTreeConfig(tile_x=tile_x, tile_y=tile_y,
|
|
mode=['tile', str(tile_x), str(tile_y)], **kwargs)
|
|
|
|
|
|
def RecordGridConfig(tile_x, tile_y, **kwargs):
|
|
return GridConfig(tile_x=tile_x, tile_y=tile_y, mode='record', **kwargs)
|
|
|
|
|
|
def PlaybackCreationGridConfig(tile_x, tile_y, **kwargs):
|
|
return GridConfig(tile_x, tile_y, mode='playbackCreation')
|
|
|
|
|
|
def TileGridConfig(tile_x, tile_y, **kwargs):
|
|
return GridConfig(tile_x, tile_y, mode=['tile', str(tile_x), str(tile_y)],
|
|
**kwargs) |