I'm clueless when it comes to which renderer to use for MATLAB figures or when it matters, but I have come across certain examples where it does matter:
plot(0,0,'ko','markersize',50,'linewidth',8);
set(gcf,'renderer','opengl');
set(gcf,'renderer','painters');
Left=OpenGL, Right=Painters:
(running Windows 7 Professional and MATLAB R2015b)
Are there times when using the OpenGL renderer produces better results than Painters? In general how do the two renderers differ?
set(0, 'DefaultFigureRenderer', 'painters');
instartup.m
. – Metameric