Qt: Add log window
This commit is contained in:
@ -5,7 +5,7 @@
|
||||
#include "common/assert.h"
|
||||
#include "common/log.h"
|
||||
#include <dlfcn.h>
|
||||
Log_SetChannel(GL::ContextAGL);
|
||||
Log_SetChannel(GL::Context);
|
||||
|
||||
namespace GL {
|
||||
ContextAGL::ContextAGL(const WindowInfo& wi) : Context(wi)
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
#include <optional>
|
||||
#include <vector>
|
||||
|
||||
Log_SetChannel(GL::ContextEGL);
|
||||
Log_SetChannel(GL::Context);
|
||||
|
||||
namespace GL {
|
||||
ContextEGL::ContextEGL(const WindowInfo& wi) : Context(wi)
|
||||
|
||||
@ -7,7 +7,7 @@
|
||||
|
||||
#include <dlfcn.h>
|
||||
|
||||
Log_SetChannel(ContextEGLWayland);
|
||||
Log_SetChannel(ContextEGL);
|
||||
|
||||
namespace GL {
|
||||
static const char* WAYLAND_EGL_MODNAME = "libwayland-egl.so.1";
|
||||
|
||||
@ -8,7 +8,7 @@
|
||||
#include "common/log.h"
|
||||
#include "common/scoped_guard.h"
|
||||
|
||||
Log_SetChannel(GL::ContextWGL);
|
||||
Log_SetChannel(GL::Context);
|
||||
|
||||
#ifdef __clang__
|
||||
#pragma clang diagnostic ignored "-Wmicrosoft-cast"
|
||||
|
||||
@ -21,7 +21,7 @@
|
||||
|
||||
#include <cerrno>
|
||||
|
||||
Log_SetChannel(OpenGLPipeline);
|
||||
Log_SetChannel(OpenGLDevice);
|
||||
|
||||
struct PipelineDiskCacheFooter
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user