2017-10-28 02:10:06 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
2013-07-09 00:33:15 +04:00
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2012-05-10 08:31:14 +04:00
|
|
|
#pragma once
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2012-05-10 08:31:14 +04:00
|
|
|
#include "TestBase.h"
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2012-05-10 08:31:14 +04:00
|
|
|
class TestScaling : public TestBase {
|
|
|
|
public:
|
|
|
|
TestScaling();
|
2014-06-19 04:56:02 +04:00
|
|
|
|
2012-05-10 08:31:14 +04:00
|
|
|
void BasicHalfScale();
|
|
|
|
void DoubleHalfScale();
|
|
|
|
void UnevenHalfScale();
|
|
|
|
void OddStrideHalfScale();
|
|
|
|
void VerticalHalfScale();
|
|
|
|
void HorizontalHalfScale();
|
|
|
|
void MixedHalfScale();
|
|
|
|
};
|