~glcompbench-dev/glcompbench/blur-update

« back to all changes in this revision

Viewing changes to src/libmatrix/test/shader_source_test.h

  • Committer: Jesse Barker
  • Date: 2012-01-27 22:26:02 UTC
  • mfrom: (74.1.5 libmatrix-util)
  • Revision ID: jesse.barker@linaro.org-20120127222602-osainr4na7opoiij
Merge of lp:~glcompbench-dev/glcompbench/libmatrix-util.

Updates glcompbench to reflect the latest lp:libmatrix, which, in and of itself,
conslidates code previously duplicated between glcompbench and glmark2 into
libmatrix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
// Copyright (c) 2012 Linaro Limited
 
3
//
 
4
// All rights reserved. This program and the accompanying materials
 
5
// are made available under the terms of the MIT License which accompanies
 
6
// this distribution, and is available at
 
7
// http://www.opensource.org/licenses/mit-license.php
 
8
//
 
9
// Contributors:
 
10
//     Jesse Barker - original implementation.
 
11
//
 
12
#ifndef SHADER_SOURCE_TEST_H_
 
13
#define SHADER_SOURCE_TEST_H_
 
14
 
 
15
class MatrixTest;
 
16
class Options;
 
17
 
 
18
class ShaderSourceBasic : public MatrixTest
 
19
{
 
20
public:
 
21
    ShaderSourceBasic() : MatrixTest("ShaderSource::basic") {}
 
22
    virtual void run(const Options& options);
 
23
};
 
24
 
 
25
class ShaderSourceAddConstGlobal : public MatrixTest
 
26
{
 
27
public:
 
28
    ShaderSourceAddConstGlobal() : MatrixTest("ShaderSource::AddConstGlobal") {}
 
29
    virtual void run(const Options& options);
 
30
};
 
31
 
 
32
#endif // SHADER_SOURCE_TEST_H