Is there a way to use multisampling only for lines drawn with OpenGL, and not with the whole program? Thanks in advance!
Try including smoothed lines with glEnable(GL_LINE_SMOOTH), plus you can also add glHint(GL_LINE_SMOOTH_HINT, GL_NICEST). They can get what you want, even if it's not true, a multisampled picture.
glEnable(GL_LINE_SMOOTH)
glHint(GL_LINE_SMOOTH_HINT, GL_NICEST)
Not if you cannot draw all the lines into another buffer, and then combine this buffer with the main drawing.
Source: https://habr.com/ru/post/1759449/More articles:SQL query to simultaneously obtain group and individual values ββ- sqlHow to start using SwiftMailer - phpHow to create an AVD that replicates a Dell Streak display - androidTStringGrid does not update when InvalidateCol () is called - delphiAdding xml nodes at a specific point using xslt - xmlDescription of Perl WSDL Interfaces - typesHtml.ActionLink doesn't display anything - asp.net-mvcPython - sum of numbers - pythonSQL Server connection randomly returns 233 or 18456 error codes - sql-serverhttps://translate.googleusercontent.com/translate_c?depth=1&pto=aue&rurl=translate.google.com&sl=ru&sp=nmt4&tl=en&u=https://fooobar.com/questions/1759454/android-how-to-align-ads-to-the-bottom-of-screen-even-if-the-view-scrolls&usg=ALkJrhhyJ4W1e_rA2A0VOxHDlFSFpqNGLwAll Articles