From f83787181808b9442e1eedbda837b72a9ce41590 Mon Sep 17 00:00:00 2001 From: redthing1 Date: Mon, 15 Jul 2024 18:58:01 -0700 Subject: [PATCH] celtest use aniso --- demo/celtest/source/app.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/demo/celtest/source/app.d b/demo/celtest/source/app.d index 3e5a0e9..8123a0e 100644 --- a/demo/celtest/source/app.d +++ b/demo/celtest/source/app.d @@ -25,7 +25,7 @@ class Game : Core { this(int width, int height) { // core init here - Core.default_filter_mode = raylib.TextureFilter.TEXTURE_FILTER_TRILINEAR; + Core.default_filter_mode = raylib.TextureFilter.TEXTURE_FILTER_ANISOTROPIC_4X; super(width, height, vr_enabled ? "celtest [VR]" : "celtest"); }