Makes read-write gl texture
| 128 | |
| 129 | // Makes read-write gl texture |
| 130 | Status MakeGlTextureRef(const Object& object, GlTexture* gl_texture) { |
| 131 | return absl::visit(TextureRefMaker{object.data_type, gl_texture}, |
| 132 | object.size); |
| 133 | } |
| 134 | |
| 135 | Status MakeGlBuffer(const Object& object, const ObjectData& data, |
| 136 | GlBuffer* gl_buffer) { |
no test coverage detected