| 1123 | |
| 1124 | |
| 1125 | FramebufferObjectMap::FramebufferObjectMap(uint32_t context_id) |
| 1126 | { |
| 1127 | set_current_context_id(context_id); |
| 1128 | auto default_fb = std::make_shared<UsedObject>(0); |
| 1129 | addObject(0, default_fb); |
| 1130 | bind(GL_DRAW_FRAMEBUFFER, 0); |
| 1131 | bind(GL_READ_FRAMEBUFFER, 0); |
| 1132 | } |
| 1133 | |
| 1134 | unsigned |
| 1135 | FramebufferObjectMap::getBindpointFromCall(const trace::Call& call) const |
nothing calls this directly
no outgoing calls
no test coverage detected