blob: 6ce4b5827d71e7a346d85713d8215b294f2a7cfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
/**
* @file llwlparamset_stub.cpp
* @brief stub class to allow unit testing
*
* $LicenseInfo:firstyear=2009&license=viewergpl$
* Copyright (c) 2009, Linden Research, Inc.
* $/LicenseInfo$
*/
LLWLParamSet::LLWLParamSet(void)
{
}
void LLWLParamSet::updateCloudScrolling()
{
}
void LLWLParamSet::set(const std::string& name, const LLVector4& val)
{
}
void LLWLParamSet::update(LLGLSLShader *shader) const
{
}
|