| 10 | using namespace gte; |
| 11 | |
| 12 | BlendState::BlendState() |
| 13 | : |
| 14 | enableAlphaToCoverage(false), |
| 15 | enableIndependentBlend(false), |
| 16 | target{}, |
| 17 | blendColor{ 0.0f, 0.0f, 0.0f, 0.0f }, |
| 18 | sampleMask(0xFFFFFFFFu) |
| 19 | { |
| 20 | mType = GT_BLEND_STATE; |
| 21 | } |
| 22 | |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected