From 8e4d5740c88ab12842f39a5e661fa948953bcf8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Foucault?= Date: Wed, 12 Feb 2020 18:43:10 +0100 Subject: [PATCH] GPencil: Disable multisampling as it is not supported anymore Another AA method is comming in the GPencil refactor. --- source/blender/draw/engines/gpencil/gpencil_engine.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/blender/draw/engines/gpencil/gpencil_engine.c b/source/blender/draw/engines/gpencil/gpencil_engine.c index d049abbade5..fc5f04e658d 100644 --- a/source/blender/draw/engines/gpencil/gpencil_engine.c +++ b/source/blender/draw/engines/gpencil/gpencil_engine.c @@ -278,7 +278,8 @@ void GPENCIL_engine_init(void *vedata) stl->storage->shade_render[1] = 0; } - stl->storage->multisamples = U.gpencil_multisamples; + /* Not supported anymore. */ + stl->storage->multisamples = 0; /* create shaders */ GPENCIL_create_shaders();