代码如下:胶囊体(先渲染Geometry+1): Shader "SoulCoder/Mask" { SubShader { Tags { "RenderType"="Opaque" "Queue"="Geometry+1"} ColorMask 0 ZWrite off Stencil { Ref ...
分类:
其他好文 时间:
2019-08-05 19:05:53
阅读次数:
125
在appDelegate.cpp文件中添加 然后调用register_cjson(L); 如果有报错: lua_cjson.c:1328:13: Static declaration of ‘luaL_setfuncs’ follows non-static declaration 解决方案:去掉s ...
分类:
Web程序 时间:
2019-08-05 17:12:48
阅读次数:
287
#include <setjmp.h> #include <stdio.h> jmp_buf j; void raise_exception(void) { printf("exception raised\n"); longjmp(j, 3); /* jump to exception handl ...
分类:
其他好文 时间:
2019-07-17 23:08:44
阅读次数:
157
```cpp include using namespace std; const int maxl = 1e7 + 5; char buf[maxl]; int main() { freopen("try.in", "r", stdin); freopen("try.out", "w", stdo ...
分类:
其他好文 时间:
2019-07-08 00:12:17
阅读次数:
105
1.缓存区的制作 思路:按照输入数据的顺序输出数据 简单地数据存储: fifo_buf.next的起始点是0,所以最初存储的数据是fifo_buf.data[0],下一个是fifo_buf.data[1],依次类推,一共32个存储位置。 下一个存储位置有用变量next管理,这样就可以记住32数据而不 ...
分类:
其他好文 时间:
2019-07-07 12:55:40
阅读次数:
104
测量脉冲宽度或者测量频率 基本方法 1.设置TIM2?CH1为输入捕获功能; 2.设置上升沿捕获; 3.使能TIM2?CH1捕获功能; 4.捕获到上升沿后,存入capture_buf[0],改为捕获下降沿; 5.捕获到下降沿后,存入capture_buf[1],改为捕获上升沿; 6.捕获到上升沿后, ...
分类:
其他好文 时间:
2019-07-07 12:36:34
阅读次数:
293
什么是BFC: 块格式化上下文(Block Formatting Context,BFC) 是Web页面的可视化CSS渲染的一部分,是块盒子的布局过程发生的区域,也是浮动元素与其他元素交互的区域 创建BFC的方式: 图:创建BUF的方式 BFC的作用: ①. BFC 元素和 BFC 元素不会叠加在一 ...
分类:
其他好文 时间:
2019-07-06 19:06:59
阅读次数:
120
8.1 c++ include using namespace std; istream& func(istream &is) { std::string buf; while (is buf) std::cout include include include using namespace st ...
分类:
其他好文 时间:
2019-07-04 15:55:31
阅读次数:
81
namespace fastIO { define BUF_SIZE 100000 //fread read bool IOerror = 0; inline char nc() { static char buf[BUF_SIZE], p1 = buf + BUF_SIZE, pend = buf ...
分类:
其他好文 时间:
2019-07-02 21:34:09
阅读次数:
144
printk 函数将消息写入一个 LOG_BUF_LEN 字节长的环形缓存, 长度值从 4 KB 到 1 MB, 由配置内核时选择. 这个函数接着唤醒任何在等待消息的进程, 就是说, 任何在系统 调用中睡眠或者在读取 /proc/kmsg 的进程. 这 2 个日志引擎的接口几乎是等同的, 但 是注意 ...
分类:
其他好文 时间:
2019-06-29 14:48:50
阅读次数:
106