I’m running code that draws using OpenGL on a Macbook M3, and get messages to the console like this, every time the app runs:
FALLBACK (log once): Fallback to SW vertex for line stipple
FALLBACK (log once): Fallback to SW vertex processing, m_disable_code: 2000
FALLBACK (log once): Fallback to SW vertex processing in drawCore, m_disable_code: 2000
From what I can see, they are caused when using glLineStipple to draw, you’ve guessed it, lines with a stipple pattern.
The question is, ‘Is there a way of turning off these messages’? Thanks.