VertexShaderManager: Make ProjectionHack private
There's no reason to make this public, and it prevents a build issue with the next commit.
This commit is contained in:
parent
3b29320113
commit
4981b7cdd3
|
@ -63,6 +63,15 @@ inline void SetMultiVSConstant4fv(unsigned int const_number, unsigned int count,
|
|||
g_renderer->SetMultiVSConstant4fv(const_number, count, f);
|
||||
}
|
||||
|
||||
struct ProjectionHack
|
||||
{
|
||||
float sign;
|
||||
float value;
|
||||
ProjectionHack() { }
|
||||
ProjectionHack(float new_sign, float new_value)
|
||||
: sign(new_sign), value(new_value) {}
|
||||
};
|
||||
|
||||
namespace
|
||||
{
|
||||
// Control Variables
|
||||
|
|
|
@ -9,15 +9,6 @@
|
|||
|
||||
class PointerWrap;
|
||||
|
||||
struct ProjectionHack
|
||||
{
|
||||
float sign;
|
||||
float value;
|
||||
ProjectionHack() { }
|
||||
ProjectionHack(float new_sign, float new_value)
|
||||
: sign(new_sign), value(new_value) {}
|
||||
};
|
||||
|
||||
void UpdateProjectionHack(int iParams[], std::string sParams[]);
|
||||
|
||||
void UpdateViewportWithCorrection();
|
||||
|
|
Loading…
Reference in New Issue