| 174 | } |
| 175 | |
| 176 | SamplerResource::~SamplerResource() |
| 177 | { |
| 178 | deleteObject(glDeleteSamplers, id(), hasOwnership()); |
| 179 | } |
| 180 | |
| 181 | ShaderResource::ShaderResource(GLenum type) |
| 182 | : IDResource(glCreateShader(type)) |
nothing calls this directly
no test coverage detected