2019-09-25 03:25:59 +00:00
|
|
|
/*
|
|
|
|
===========================================================================
|
2024-02-06 22:15:31 +00:00
|
|
|
Copyright (C) 2023-2024 Gian 'myT' Schellenbaum
|
2019-09-25 03:25:59 +00:00
|
|
|
|
|
|
|
This file is part of Challenge Quake 3 (CNQ3).
|
|
|
|
|
|
|
|
Challenge Quake 3 is free software; you can redistribute it
|
|
|
|
and/or modify it under the terms of the GNU General Public License as
|
|
|
|
published by the Free Software Foundation; either version 2 of the License,
|
|
|
|
or (at your option) any later version.
|
|
|
|
|
|
|
|
Challenge Quake 3 is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Challenge Quake 3. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
===========================================================================
|
|
|
|
*/
|
2024-02-06 22:15:31 +00:00
|
|
|
// shared alpha test symbols and functions
|
2019-09-25 03:25:59 +00:00
|
|
|
|
|
|
|
|
2024-01-13 21:40:13 +00:00
|
|
|
#pragma once
|
2022-12-28 19:49:18 +00:00
|
|
|
|
|
|
|
|
2024-02-06 22:15:31 +00:00
|
|
|
#define ATEST_NONE 0u
|
|
|
|
#define ATEST_GT_0 1u
|
|
|
|
#define ATEST_LT_HALF 2u
|
|
|
|
#define ATEST_GE_HALF 3u
|
|
|
|
|
|
|
|
#if !defined(__cplusplus)
|
2024-03-29 03:19:27 +00:00
|
|
|
|
2024-01-13 21:40:13 +00:00
|
|
|
bool FailsAlphaTest(float alpha, uint alphaTest)
|
2019-09-25 03:25:59 +00:00
|
|
|
{
|
2024-01-13 21:40:13 +00:00
|
|
|
if(alphaTest == ATEST_GT_0)
|
|
|
|
return alpha == 0.0;
|
|
|
|
else if(alphaTest == ATEST_LT_HALF)
|
|
|
|
return alpha >= 0.5;
|
|
|
|
else if(alphaTest == ATEST_GE_HALF)
|
|
|
|
return alpha < 0.5;
|
|
|
|
else // ATEST_NONE
|
|
|
|
return false;
|
2019-09-25 03:25:59 +00:00
|
|
|
}
|
2024-03-29 03:19:27 +00:00
|
|
|
|
|
|
|
bool PassesAlphaTest(float alpha, uint alphaTest)
|
|
|
|
{
|
|
|
|
return !FailsAlphaTest(alpha, alphaTest);
|
|
|
|
}
|
|
|
|
|
2024-02-06 22:15:31 +00:00
|
|
|
#endif
|