GLSL per-pixel lighting + spot texture (聚光灯贴图)
摘要:
聚光灯贴图,就是聚光灯照射在表面上的那个光圈,准备一张spot texture的亮度图,采用“GLSL projective texture ”一文中介绍的投影贴图方法把spot texture 投射到聚光灯方向。 unsigned char* pixels = (unsigned char*)malloc( 64*64 ); for (int j = 0; j < 64; j++... 阅读全文
posted @ 2008-10-26 10:18 cgwolver 阅读(928) 评论(0) 推荐(0) 编辑