| 731 | #endif |
| 732 | |
| 733 | void Textures::GenerateMipmap(const TextureRef& tex_ref) { |
| 734 | PROFILER_GPU_ZONE(g_profiler_ctx, "Textures::GenerateMipmap"); |
| 735 | bindTexture(tex_ref, 0); |
| 736 | glGenerateMipmap(GL_TEXTURE_2D); |
| 737 | } |
| 738 | |
| 739 | void Textures::setSampleFilter(const TextureRef& tex_ref, enum SampleFilter filter) { |
| 740 | bindTexture(tex_ref); |
no outgoing calls
no test coverage detected