# SDL_GPUSamplerMipmapMode Specifies a mipmap mode used by a sampler. ## Header File Defined in [](https://github.com/libsdl-org/SDL/blob/main/include/SDL3/SDL_gpu.h) ## Syntax ```c typedef enum SDL_GPUSamplerMipmapMode { SDL_GPU_SAMPLERMIPMAPMODE_NEAREST, /**< Point filtering. */ SDL_GPU_SAMPLERMIPMAPMODE_LINEAR /**< Linear filtering. */ } SDL_GPUSamplerMipmapMode; ``` ## Version This enum is available since SDL 3.2.0. ## See Also - [SDL_CreateGPUSampler](SDL_CreateGPUSampler) ---- [CategoryAPI](CategoryAPI), [CategoryAPIEnum](CategoryAPIEnum), [CategoryGPU](CategoryGPU)