Comments in header
| 2854 | |
| 2855 | // Comments in header |
| 2856 | void Builder::enterLexicalBlock(uint32_t line, uint32_t column) |
| 2857 | { |
| 2858 | if (!emitNonSemanticShaderDebugInfo) { |
| 2859 | return; |
| 2860 | } |
| 2861 | |
| 2862 | // Generate new lexical scope debug instruction |
| 2863 | Id lexId = makeDebugLexicalBlock(line, column); |
| 2864 | currentDebugScopeId.push(lexId); |
| 2865 | dirtyScopeTracker = true; |
| 2866 | } |
| 2867 | |
| 2868 | // Comments in header |
| 2869 | void Builder::leaveLexicalBlock() |