• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
 






中華大帝

 
 

Powered by 博客园
博客园 | 首页 | 新随笔 | 联系 | 订阅 订阅 | 管理
上一页 1 2 3 4 5 6 下一页

2023年4月16日

这就是光追
摘要: 阅读全文
posted @ 2023-04-16 01:55 中華大帝 阅读(19) 评论(0) 推荐(0)
 

2023年3月19日

谷歌的 OpenGL ES 库 Angle PBuffer 测试代码(Windows 平台)
摘要: /* 这个例子是 Windows 平台测试谷歌的 Angle 库,PBuffer 的创建。用到了 GLAD 的 EGL 和 GLES 2.x、GLES 3.x 模块。 * * 用到的 Angle 的动态链接库是: * * d3dcompiler_47.dll * libEGL.dll * libGL 阅读全文
posted @ 2023-03-19 21:55 中華大帝 阅读(348) 评论(0) 推荐(0)
 

2022年10月30日

C++11 unistring 类(编码转换)
摘要: C++11 的编码转换程序: #ifndef UNISTRING_HPP #define UNISTRING_HPP #include <algorithm> #include <codecvt> #include <cstdio> #include <cstdarg> #include <iost 阅读全文
posted @ 2022-10-30 00:36 中華大帝 阅读(127) 评论(0) 推荐(0)
 

2022年8月28日

c++ delegate 类,最大16个参数,用程序生成的代码
摘要: 2017-02-16 04:58:34 发布于 CSDN 现转博客园。 读这篇文章的前提是,我们使用的编辑器对c++11的支持不太友好。下面是测试代码: #include <stdio.h> #include <stdlib.h> #include "delegate.h" using namesp 阅读全文
posted @ 2022-08-28 11:17 中華大帝 阅读(34) 评论(0) 推荐(0)
 

2022年8月22日

eclipse 2022 Failed to create the part's controls
摘要: 现在这百度,一搜全是一篇文章。 这个问题就是,ctrl+鼠标左键,点不开源代码了。 这段时间遇到这个问题,一直没解决。突然看到切换 workspace 的文章,单纯还选择原来的 workspace,然后重启。没事切换什么 workspace,我想会不会是原来老版本用的 workspace,设置影响到 阅读全文
posted @ 2022-08-22 21:56 中華大帝 阅读(47) 评论(0) 推荐(0)
 

2022年8月2日

关于 vs utf-8 的问题
摘要: 一直发现 vs 编译的程序占用内存很大,代码不多,内存一两百 M,今天发现是 utf-8 的问题。代码里面设置了一个参数: #pragma execution_character_set("utf-8") 阅读全文
posted @ 2022-08-02 15:31 中華大帝 阅读(38) 评论(0) 推荐(0)
 

2022年6月27日

CSDN 现在好脏
摘要: 一屏的弹出广告,网页代码还全部用js加密,不登录没法复制。 百度全是 csdn 的虚假链接和广告链接,全是信息噪音。 百度屏蔽 csdn 信息噪音的方法,搜索关键词后面加上:-site:csdn.net 阅读全文
posted @ 2022-06-27 11:17 中華大帝 阅读(41) 评论(1) 推荐(0)
 

2022年6月19日

c++一维数组指针转二维数组指针
摘要: typedef float mat4[4][4]; void mat4_set(mat4 m) { for (int y = 0; y < 4; ++y) { for (int x = 0; x < 4; ++x) { m[y][x] = y * 4 + x; } } } template<type 阅读全文
posted @ 2022-06-19 13:05 中華大帝 阅读(171) 评论(0) 推荐(0)
 

2022年5月19日

pool_allocator 轻量模板内存池
摘要: 只能一次申请一个对象,没有线程锁。 template <typename T, size_t PAGE> class pool_allocator { public: typedef pool_allocator this_type; typedef T value_type; typedef va 阅读全文
posted @ 2022-05-19 12:00 中華大帝 阅读(52) 评论(0) 推荐(0)
 
TMemo 响应 Ctrl + A
摘要: 看了这篇文章:://blog.csdn.net/aroc_lo/article/details/38387379才知道,CTRA+A == 1,我用的C++Builder,下面是改进的代码: void __fastcall TfrmMain::Memo1KeyPress(TObject *Sende 阅读全文
posted @ 2022-05-19 11:59 中華大帝 阅读(41) 评论(0) 推荐(0)
 
上一页 1 2 3 4 5 6 下一页