OpenGL中的image变量

  写在前面   OpenGL 在 4.2 版本中增加了新的 glsl 变量 —— image 变量,详情请见 image variable。image 变量和 texture 变量非常相似,不同点在于 image 变量同时具有读和写的功能,而 texture 变量是只读的。由于 OpenGL 的历史遗留原因,glsl 中没有 texture 变量,只能使用 samp […]

C++11新特性——启动线程

    线程支持库   C++ 11 中新增了支持线程(thread )、互斥(mutual exclusion)、条件变量(condition variables)和 std::future(期货)。   本节是 C++ 11 并发的第一节,主要介绍多线程运行时的基本高级接口——std::async() 和 std::future 以及底层接口 std::thread 和 std […]