| 123 | } |
| 124 | |
| 125 | void SpriteBatchNode::setVertexLayout() |
| 126 | { |
| 127 | AXASSERT(_programState, "programState should not be nullptr"); |
| 128 | _programState->validateSharedVertexLayout(backend::VertexLayoutType::Sprite); |
| 129 | } |
| 130 | |
| 131 | bool SpriteBatchNode::setProgramState(backend::ProgramState* programState, bool ownPS/* = false*/) |
| 132 | { |
nothing calls this directly
no test coverage detected