| 180 | } |
| 181 | |
| 182 | FORCE_INLINE GPUPipelineState* Get(bool depthWrite, bool depthTest) |
| 183 | { |
| 184 | if (depthWrite) |
| 185 | return depthTest ? DepthWrite : NoDepthTestDepthWrite; |
| 186 | return depthTest ? Depth : NoDepthTest; |
| 187 | } |
| 188 | }; |
| 189 | |
| 190 | template<typename T> |
no outgoing calls
no test coverage detected