summaryrefslogtreecommitdiff
path: root/src/gpu/sampler_cache.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/sampler_cache.h')
-rw-r--r--src/gpu/sampler_cache.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/gpu/sampler_cache.h b/src/gpu/sampler_cache.h
index 0a2afa0..562db29 100644
--- a/src/gpu/sampler_cache.h
+++ b/src/gpu/sampler_cache.h
@@ -51,4 +51,8 @@ class SamplerCache {
return {WGPUAddressMode_ClampToEdge, WGPUAddressMode_ClampToEdge,
WGPUFilterMode_Linear, WGPUFilterMode_Linear, 1};
}
+ static SamplerSpec nearest() {
+ return {WGPUAddressMode_ClampToEdge, WGPUAddressMode_ClampToEdge,
+ WGPUFilterMode_Nearest, WGPUFilterMode_Nearest, 1};
+ }
};