
Opengl学习笔记
记录opengl学习过程
li_jin_
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C++ 绘画出点
编译器:Microsoft Visual Basic 2015 入口代码: #include "stdafx.h" #include <windows.h> #include <tchar.h> #include "Raster.h" //回调函数 LRESULT CALLBACK windowProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch (msg) { case W...原创 2020-05-09 00:17:54 · 1667 阅读 · 0 评论 -
'XXXX': is not a class or namespace name 解决方案之一
使用Microsoft Visual Basic 2015 学习C++ 出现'XXXX': is not a class or namespace name 报错, 反复检查引用是否正确,书学名称是否出错,均没有找到问题, 最后发现将#include "stdafx.h" 移至文件第一行,该报错消失 找这个bug耗时两小时以上,没想到在阴沟翻船,这里做下记录,目前未知道为什么导致的,以后了解原理进行更新说明 ...原创 2020-05-08 23:36:04 · 3229 阅读 · 0 评论 -
C++创建画布,居中绘制出白线
#include "stdafx.h" #include <windows.h> #include <tchar.h> //回调函数 LRESULT CALLBACK windowProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch (msg) { case WM_SI...原创 2020-05-01 22:18:48 · 1916 阅读 · 0 评论 -
C++创建windows窗口
#include "stdafx.h" #include <windows.h> #include <tchar.h> //回调函数 LRESULT CALLBACK windowProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { switch (msg) { case WM_SI...原创 2020-05-01 21:44:49 · 5267 阅读 · 2 评论