GPencil: Disable multisampling as it is not supported anymore

Another AA method is comming in the GPencil refactor.
This commit is contained in:
Clément Foucault 2020-02-12 18:43:10 +01:00
parent 00e012d564
commit 8e4d5740c8
1 changed files with 2 additions and 1 deletions

View File

@ -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();