blob: 85bf0ae3fb3540282f4a81188dcda97f56d132ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/**
* @file llpipeline_stub.cpp
* @brief stub class to allow unit testing
*
* $LicenseInfo:firstyear=2009&license=viewergpl$
* Copyright (c) 2009, Linden Research, Inc.
* $/LicenseInfo$
*/
class LLPipeline
{
public: BOOL canUseWindLightShaders() const;
};
BOOL LLPipeline::canUseWindLightShaders() const {return TRUE;}
LLPipeline gPipeline;
|