Spaces:
Build error
Build error
File size: 6,974 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 |
package com.mojang.blaze3d.platform;
import com.google.common.collect.EvictingQueue;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.Lists;
import com.mojang.logging.LogUtils;
import java.util.List;
import java.util.Queue;
import javax.annotation.Nullable;
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import org.lwjgl.opengl.ARBDebugOutput;
import org.lwjgl.opengl.GL;
import org.lwjgl.opengl.GL11;
import org.lwjgl.opengl.GLCapabilities;
import org.lwjgl.opengl.GLDebugMessageARBCallback;
import org.lwjgl.opengl.GLDebugMessageCallback;
import org.lwjgl.opengl.KHRDebug;
import org.slf4j.Logger;
@OnlyIn(Dist.CLIENT)
public class GlDebug {
private static final Logger LOGGER = LogUtils.getLogger();
private static final int CIRCULAR_LOG_SIZE = 10;
private static final Queue<GlDebug.LogEntry> MESSAGE_BUFFER = EvictingQueue.create(10);
@Nullable
private static volatile GlDebug.LogEntry lastEntry;
private static final List<Integer> DEBUG_LEVELS = ImmutableList.of(37190, 37191, 37192, 33387);
private static final List<Integer> DEBUG_LEVELS_ARB = ImmutableList.of(37190, 37191, 37192);
private static boolean debugEnabled;
private static String printUnknownToken(int p_84037_) {
return "Unknown (0x" + Integer.toHexString(p_84037_).toUpperCase() + ")";
}
public static String sourceToString(int p_84056_) {
switch (p_84056_) {
case 33350:
return "API";
case 33351:
return "WINDOW SYSTEM";
case 33352:
return "SHADER COMPILER";
case 33353:
return "THIRD PARTY";
case 33354:
return "APPLICATION";
case 33355:
return "OTHER";
default:
return printUnknownToken(p_84056_);
}
}
public static String typeToString(int p_84058_) {
switch (p_84058_) {
case 33356:
return "ERROR";
case 33357:
return "DEPRECATED BEHAVIOR";
case 33358:
return "UNDEFINED BEHAVIOR";
case 33359:
return "PORTABILITY";
case 33360:
return "PERFORMANCE";
case 33361:
return "OTHER";
case 33384:
return "MARKER";
default:
return printUnknownToken(p_84058_);
}
}
public static String severityToString(int p_84060_) {
switch (p_84060_) {
case 33387:
return "NOTIFICATION";
case 37190:
return "HIGH";
case 37191:
return "MEDIUM";
case 37192:
return "LOW";
default:
return printUnknownToken(p_84060_);
}
}
private static void printDebugLog(int p_84039_, int p_84040_, int p_84041_, int p_84042_, int p_84043_, long p_84044_, long p_84045_) {
String s = GLDebugMessageCallback.getMessage(p_84043_, p_84044_);
GlDebug.LogEntry gldebug$logentry;
synchronized (MESSAGE_BUFFER) {
gldebug$logentry = lastEntry;
if (gldebug$logentry != null && gldebug$logentry.isSame(p_84039_, p_84040_, p_84041_, p_84042_, s)) {
gldebug$logentry.count++;
} else {
gldebug$logentry = new GlDebug.LogEntry(p_84039_, p_84040_, p_84041_, p_84042_, s);
MESSAGE_BUFFER.add(gldebug$logentry);
lastEntry = gldebug$logentry;
}
}
LOGGER.info("OpenGL debug message: {}", gldebug$logentry);
}
public static List<String> getLastOpenGlDebugMessages() {
synchronized (MESSAGE_BUFFER) {
List<String> list = Lists.newArrayListWithCapacity(MESSAGE_BUFFER.size());
for (GlDebug.LogEntry gldebug$logentry : MESSAGE_BUFFER) {
list.add(gldebug$logentry + " x " + gldebug$logentry.count);
}
return list;
}
}
public static boolean isDebugEnabled() {
return debugEnabled;
}
public static void enableDebugCallback(int p_84050_, boolean p_84051_) {
if (p_84050_ > 0) {
GLCapabilities glcapabilities = GL.getCapabilities();
if (glcapabilities.GL_KHR_debug) {
debugEnabled = true;
GL11.glEnable(37600);
if (p_84051_) {
GL11.glEnable(33346);
}
for (int i = 0; i < DEBUG_LEVELS.size(); i++) {
boolean flag = i < p_84050_;
KHRDebug.glDebugMessageControl(4352, 4352, DEBUG_LEVELS.get(i), (int[])null, flag);
}
KHRDebug.glDebugMessageCallback(GLX.make(GLDebugMessageCallback.create(GlDebug::printDebugLog), DebugMemoryUntracker::untrack), 0L);
} else if (glcapabilities.GL_ARB_debug_output) {
debugEnabled = true;
if (p_84051_) {
GL11.glEnable(33346);
}
for (int j = 0; j < DEBUG_LEVELS_ARB.size(); j++) {
boolean flag1 = j < p_84050_;
ARBDebugOutput.glDebugMessageControlARB(4352, 4352, DEBUG_LEVELS_ARB.get(j), (int[])null, flag1);
}
ARBDebugOutput.glDebugMessageCallbackARB(GLX.make(GLDebugMessageARBCallback.create(GlDebug::printDebugLog), DebugMemoryUntracker::untrack), 0L);
}
}
}
@OnlyIn(Dist.CLIENT)
static class LogEntry {
private final int id;
private final int source;
private final int type;
private final int severity;
private final String message;
int count = 1;
LogEntry(int p_166234_, int p_166235_, int p_166236_, int p_166237_, String p_166238_) {
this.id = p_166236_;
this.source = p_166234_;
this.type = p_166235_;
this.severity = p_166237_;
this.message = p_166238_;
}
boolean isSame(int p_166240_, int p_166241_, int p_166242_, int p_166243_, String p_166244_) {
return p_166241_ == this.type
&& p_166240_ == this.source
&& p_166242_ == this.id
&& p_166243_ == this.severity
&& p_166244_.equals(this.message);
}
@Override
public String toString() {
return "id="
+ this.id
+ ", source="
+ GlDebug.sourceToString(this.source)
+ ", type="
+ GlDebug.typeToString(this.type)
+ ", severity="
+ GlDebug.severityToString(this.severity)
+ ", message='"
+ this.message
+ "'";
}
}
} |