会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
中華大帝
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
上一页
1
2
3
4
5
6
下一页
2022年5月19日
动态二维数组
摘要: /* array2d.hpp sdragon 2006-10-08 22:26:44 创建二维数组的程序。array2d<T>::array_t 是 C 的纯指针模式,一定要使用 delete_array2d<T>()删除。 由 vector<T> 创建的数组的效率要高一些 */ #ifndef C
阅读全文
posted @ 2022-05-19 11:50 中華大帝
阅读(23)
评论(0)
推荐(0)
编辑
文件名匹配算法(windows下的[*?])
摘要: /* fn_compare.hpp sdragonx 2015-02-25 14:32:54 */ #ifndef FN_COMPARE_HPP_20150225143254 #define FN_COMPARE_HPP_20150225143254 #include <string> #defin
阅读全文
posted @ 2022-05-19 11:49 中華大帝
阅读(122)
评论(0)
推荐(0)
编辑
任意数据长度的 bitset,以及按位读写数据的函数
摘要: 如果没有定义过 byte_t 类型: #include <stdint.h>typedef uint8_t byte_t;//typedef unsigned char byte_t; // 1 个 byte 字节,8位,一般系统中能表示的最小字节数据。 // 位写入函数 uint32_t bit_
阅读全文
posted @ 2022-05-19 11:47 中華大帝
阅读(52)
评论(0)
推荐(0)
编辑
Windows 桌面各个窗口的获取
摘要: /* shellwindow.h sdragonx 2015-02-12 12:23:16 */ #ifndef SHELLWINDOW_H_20150212122316 #define SHELLWINDOW_H_20150212122316 #include <windows.h> const
阅读全文
posted @ 2022-05-19 11:31 中華大帝
阅读(306)
评论(0)
推荐(0)
编辑
注册文件类型
摘要: 使用方法,如要注册 ".abc" 类型的文件: RegisterShellFileType(".abc", "abcfile", "abc文件", "c:/abc/abc.exe", NULL, "c:/abc/abc.exe", 0); 代码: void RegisterShellFileType
阅读全文
posted @ 2022-05-19 11:29 中華大帝
阅读(69)
评论(0)
推荐(0)
编辑
快速高斯模糊[剪裁版]
摘要: 高斯模糊函数的升级版本,带剪裁区域。 函数check_rect()是处理剪裁区域矩形。如果不打算剪裁,只需要设置left, top, right, bottom都为0就可以了;另外位图的存储格式是上下反转的,如果正常剪裁的话,只需要设置bottom为 -bottom即可。 bool check_re
阅读全文
posted @ 2022-05-19 11:20 中華大帝
阅读(23)
评论(0)
推荐(0)
编辑
快速高斯滤波函数[修正完善版]
摘要: 原文地址:http://blog.csdn.net/markl22222/article/details/10313565进行了修正和变量优化。原来作者的函数只支持2次方图片,这次做了修正(windows 的 bitmap 行宽是 4 字节对齐的)。 ( 基本完善了,但是在某些条件下,Y方向的底边还
阅读全文
posted @ 2022-05-19 11:17 中華大帝
阅读(54)
评论(0)
推荐(0)
编辑
c++ 字符串分割函数 stringsplit
摘要: 新版: /* stringsplit.hpp sdragonx 2006-06-16 00:43:16 revise 2018/7/28 19:42 function list: size_t stringsplit(container, const char_type*, size_t, char
阅读全文
posted @ 2022-05-19 11:07 中華大帝
阅读(142)
评论(0)
推荐(0)
编辑
2022年4月11日
glfw C++ 封装简单例子
摘要: 直接上代码,glfw_window.hpp: #ifndef GLFW_WINDOW_HPP #define GLFW_WINDOW_HPP #include <cstdlib> // onexit() #pragma execution_character_set("utf-8") // utf8
阅读全文
posted @ 2022-04-11 13:48 中華大帝
阅读(322)
评论(0)
推荐(0)
编辑
2022年3月26日
关于 wglShareLists 的使用,以及 OpenGL 多线程、多窗口的理解
摘要: 这里有一篇文章: OpengGL 中的同步及资源共享 | 柯幽 (keyou.github.io) 然后是实际使用。 windows上面创建共享上下文,之前一直失败,没有找到原因,今天测试成功。原因就是:要共享的 OpenGL 上下文,创建好之后,什么也不要修改,马上共享。这样创建的纹理就能共享使用
阅读全文
posted @ 2022-03-26 20:32 中華大帝
阅读(418)
评论(1)
推荐(0)
编辑
上一页
1
2
3
4
5
6
下一页