| 4243 | } |
| 4244 | |
| 4245 | void PixelGameEngine::SetPixelBlend(float fBlend) |
| 4246 | { |
| 4247 | fBlendFactor = fBlend; |
| 4248 | if (fBlendFactor < 0.0f) fBlendFactor = 0.0f; |
| 4249 | if (fBlendFactor > 1.0f) fBlendFactor = 1.0f; |
| 4250 | } |
| 4251 | |
| 4252 | std::stringstream& PixelGameEngine::ConsoleOut() |
| 4253 | { |
nothing calls this directly
no outgoing calls
no test coverage detected