From 8855b8a50acf02257773469578c5ddaaf12eff9f Mon Sep 17 00:00:00 2001 From: malc Date: Fri, 5 Jul 2013 22:54:31 +0400 Subject: [PATCH] Tweaks for intel cards Reduce default texture count (given that slice height has increased) and turn on PBO. --- main.ml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/main.ml b/main.ml index 577f9da..5f40f8b 100644 --- a/main.ml +++ b/main.ml @@ -7617,7 +7617,11 @@ let () = let l = String.length p in String.length r > l && String.sub r 0 l = p ) - then defconf.sliceheight <- 1024; + then ( + defconf.sliceheight <- 1024; + defconf.texcount <- 32; + defconf.usepbo <- true; + ); let cr, sw = match Ne.pipe () with -- 2.11.4.GIT