
bug
beibaoke910
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ANGLE Display::initialize error 5: DXGI 1.2 required to present to HWNDs owned by another process.
[0419/150949:ERROR:angle_platform_impl.cc(33)] ANGLE Display::initialize error 5: DXGI 1.2 required to present to HWNDs owned by another process.[1104/150949:ERROR:gl_surface_egl.cc(598)] eglInitialize D3D11 failed with error EGL_NOT_INITIALIZED, trying原创 2021-04-27 09:31:17 · 1430 阅读 · 0 评论 -
无法打开预编译头文件: Release\xxx.pch”: No such file or directory
stdafx.cpp右键——属性,预编译头选“创建”,其它cpp选“使用”。原创 2021-03-16 13:44:46 · 904 阅读 · 0 评论 -
C++中头文件相互包含引发的问题:未定义
有两个头文件a.h和b.ha.h中#pragma once#ifndef _A_H_#define _A_H_#include "b.h"struct AInfo{ int a; int b;};#endifb.h中#pragma once#ifndef _B_H_#define _B_H_#include "a.h"cla...原创 2019-05-27 14:49:12 · 2596 阅读 · 1 评论