在移动端实现PBR效果确实费了一些时间,看的是LearnOpenGL中的例子,但是对比的是unity3d中的效果,所以效果一直不太一样,今天在有引擎经验开发同事的查错下,很快解决了问题,这里记录一下。 具体实现以后在聊。 参考链接: LearnOpenGL教程:链接 Unity3D中shader部分 ...
分类:
其他好文 时间:
2018-11-10 19:09:28
阅读次数:
141
ASCII(American Standard Code for Information Interchange,美国信息互换标准代码,ASCⅡ)是基于拉丁字母的一套电脑编码系统。它主要用于显示现代英语和其他西欧语言。它是现今最通用的单字节编码系统,并等同于国际标准ISO/IEC 646。 ASCI ...
分类:
其他好文 时间:
2018-11-10 16:45:00
阅读次数:
266
libc++是什么? libc++是C++标准库的实现! libc++ is an implementation of the C++ standard library, targeting C++11, C++14 and above. https://libcxx.llvm.org/ gcc、l ...
分类:
编程语言 时间:
2018-11-10 10:43:17
阅读次数:
648
在这一章中要学习以下内容: 函数基础 函数原型 通过value向函数传递参数 设计处理数组的函数 使用const指针参数 设计函数处理文本字符串 设计函数处理结构体 设计函数处理string类型的对象 函数的递归 指向函数的指针(函数指针) C++有一个庞大的有用的函数库(standard ANSI ...
分类:
编程语言 时间:
2018-11-08 23:25:28
阅读次数:
302
C. Hacking Cypher time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Polycarpus participates ...
分类:
其他好文 时间:
2018-11-08 19:47:29
阅读次数:
210
C. Vasya and Robot time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output C. Vasya and Robot tim ...
分类:
其他好文 时间:
2018-11-07 00:52:18
阅读次数:
180
自从大约一年前[发布 .NET Standard 2.0 ](https://blogs.msdn.microsoft.com/dotnet/2017/08/14/announcing-net-standard-2-0/)以来,我们已经向 .NET Core 2.1 发布了两个更新,并即将发布 .N... ...
分类:
Web程序 时间:
2018-11-06 19:42:57
阅读次数:
214
Objects constructor: to have an "object type" that can be used to create many objects of one type.The standard way to create an "object type" is to us ...
分类:
其他好文 时间:
2018-11-06 15:43:54
阅读次数:
204
常见的web架构 LAMP - Linux +Apache +MySQL + PHP LNMP - Linux +Nginx + Mysql + PHP RHEL开源 Linux系统 RHEL CentOS Fedora 开源 开放源代码 Nginx和Apache本身对动态网页没有处理能力 > PH ...
分类:
其他好文 时间:
2018-11-06 14:40:40
阅读次数:
341
4.队列 先进先出(FIFO)表 头文件:#include<queue> 变量的定义:queue<TYPE>queueName 5.优先队列 在队列的基础上,免费给排顺序 头文件:#include<queue> 变量的定义:priority_queue<TYPE>priority_queueName ...
分类:
其他好文 时间:
2018-11-05 21:27:06
阅读次数:
179