cleanup: don't pass bool by reference

This commit is contained in:
Eric Wasylishen 2024-11-17 21:37:17 -07:00
parent 71933f2be1
commit 4cffdc1cd2
2 changed files with 4 additions and 4 deletions

View File

@ -944,7 +944,7 @@ public:
*/
template<typename TStor = TStorage>
twosided<std::optional<winding_base_t<TStor>>> clip(
const qplane3d &plane, const float_type &on_epsilon = DEFAULT_ON_EPSILON, const bool &keepon = false) const
const qplane3d &plane, const float_type &on_epsilon = DEFAULT_ON_EPSILON, bool keepon = false) const
{
float_type *dists = (float_type *)alloca(sizeof(float_type) * (size() + 1));
planeside_t *sides = (planeside_t *)alloca(sizeof(planeside_t) * (size() + 1));
@ -1016,7 +1016,7 @@ public:
*/
template<typename TPlane>
std::optional<winding_base_t> clip_front(
const qplane3<TPlane> &plane, const float_type &on_epsilon = DEFAULT_ON_EPSILON, const bool &keepon = false)
const qplane3<TPlane> &plane, const float_type &on_epsilon = DEFAULT_ON_EPSILON, bool keepon = false)
{
float_type *dists = (float_type *)alloca(sizeof(float_type) * (size() + 1));
planeside_t *sides = (planeside_t *)alloca(sizeof(planeside_t) * (size() + 1));
@ -1080,7 +1080,7 @@ public:
==================
*/
std::optional<winding_base_t> clip_back(
const qplane3d &plane, const float_type &on_epsilon = DEFAULT_ON_EPSILON, const bool &keepon = false)
const qplane3d &plane, const float_type &on_epsilon = DEFAULT_ON_EPSILON, bool keepon = false)
{
float_type *dists = (float_type *)alloca(sizeof(float_type) * (size() + 1));
planeside_t *sides = (planeside_t *)alloca(sizeof(planeside_t) * (size() + 1));

View File

@ -253,7 +253,7 @@ public:
// intensity = 0 to 200
void setLightStyleIntensity(int style_id, int intensity);
void setMagFilter(QOpenGLTexture::Filter filter);
const bool &getKeepOrigin() const { return m_keepOrigin; }
bool getKeepOrigin() const { return m_keepOrigin; }
void setDrawTranslucencyAsOpaque(bool drawopaque);
void setShowBmodels(bool bmodels);
void setBrightness(float brightness);