| 201 | } |
| 202 | |
| 203 | ref<Fbo> Fbo::create(ref<Device> pDevice) |
| 204 | { |
| 205 | return ref<Fbo>(new Fbo(pDevice)); |
| 206 | } |
| 207 | |
| 208 | ref<Fbo> Fbo::create(ref<Device> pDevice, const std::vector<ref<Texture>>& colors, const ref<Texture>& pDepth) |
| 209 | { |
nothing calls this directly
no test coverage detected