资源简介
http://learnopengl.com/综合案例打砖块的配套库和包含项
代码片段和文件信息
/*
Jonathan Dummer
2007-07-31-10.32
simple DXT compression / decompression code
public domain
*/
#include “image_DXT.h“
#include
#include
#include
#include
/* set this =1 if you want to use the covarince matrix method...
which is better than my method of using standard deviations
overall except on the infintesimal chance that the power
method fails for finding the largest eigenvector */
#define USE_COV_MAT 1
/********* Function Prototypes *********/
/*
Takes a 4x4 block of pixels and compresses it into 8 bytes
in DXT1 format (color only no alpha). Speed is valued
over prettyness at least for now.
*/
void compress_DDS_color_block(
int channels
const unsigned char *const uncompressed
unsig
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2016-03-27 09:56 OpenGL\
目录 0 2016-03-28 08:59 OpenGL\include\
目录 0 2016-03-17 10:20 OpenGL\include\GL\
文件 1038562 2015-08-10 19:47 OpenGL\include\GL\glew.h
文件 74912 2015-08-10 19:47 OpenGL\include\GL\glxew.h
文件 64836 2015-08-10 19:47 OpenGL\include\GL\wglew.h
目录 0 2016-03-17 10:18 OpenGL\include\GLFW\
文件 147814 2016-03-16 22:05 OpenGL\include\GLFW\glfw3.h
文件 13600 2016-03-16 22:05 OpenGL\include\GLFW\glfw3native.h
文件 58744 2008-07-07 18:13 OpenGL\include\SOIL.c
文件 15545 2008-07-07 18:13 OpenGL\include\SOIL.h
目录 0 2016-03-18 23:27 OpenGL\include\glm\
文件 1511 2015-01-10 02:49 OpenGL\include\glm\CMakeLists.txt
文件 1679 2015-01-03 18:23 OpenGL\include\glm\common.hpp
目录 0 2016-03-18 23:27 OpenGL\include\glm\detail\
文件 13551 2015-01-03 18:23 OpenGL\include\glm\detail\_features.hpp
文件 2042 2015-01-03 18:23 OpenGL\include\glm\detail\_fixes.hpp
文件 4484 2015-01-03 18:23 OpenGL\include\glm\detail\_noise.hpp
文件 55879 2015-01-03 18:23 OpenGL\include\glm\detail\_swizzle.hpp
文件 65378 2015-01-03 18:23 OpenGL\include\glm\detail\_swizzle_func.hpp
文件 5215 2015-01-03 18:23 OpenGL\include\glm\detail\_vectorize.hpp
文件 7388 2015-02-10 05:17 OpenGL\include\glm\detail\dummy.cpp
文件 24464 2015-01-03 18:23 OpenGL\include\glm\detail\func_common.hpp
文件 26056 2015-02-15 18:03 OpenGL\include\glm\detail\func_common.inl
文件 7133 2015-01-03 18:23 OpenGL\include\glm\detail\func_exponential.hpp
文件 5829 2015-01-03 18:23 OpenGL\include\glm\detail\func_exponential.inl
文件 6564 2015-01-03 18:23 OpenGL\include\glm\detail\func_geometric.hpp
文件 7027 2015-01-03 18:23 OpenGL\include\glm\detail\func_geometric.inl
文件 11904 2015-01-03 18:23 OpenGL\include\glm\detail\func_integer.hpp
文件 16385 2015-01-03 18:23 OpenGL\include\glm\detail\func_integer.inl
文件 6990 2015-01-03 18:23 OpenGL\include\glm\detail\func_matrix.hpp
............此处省略286个文件信息
- 上一篇:编译原理 实验报告
- 下一篇:51单片机rs232通讯汇编程序
评论
共有 条评论