登录
首页 » C++ » FilmTV

FilmTV

于 2020-09-01 发布 文件大小:2455KB
0 57
下载积分: 1 下载次数: 6

代码说明:

  POWERVR OpenGL ES SDK 的 3d demo FilmTV(POWERVR OpenGL ES SDK for 3d demo FilmTV)

文件列表:

FilmTV

......\FilmTV.txt,175,2009-08-26
......\Media


......\.....\FilmTV_Room.max,393216,2009-09-21



......\.....\TV.png,116416,2009-09-10
......\.....\TVCase.png,18203,2009-09-10
......\.....\TVSpeaker.png,5743,2009-09-10
......\.....\Wall.png,644502,2009-09-21
......\OGLES2
......\......\Alum.pvr,11060,2010-03-15
......\......\Build
......\......\.....\WindowsPC
......\......\.....\.........\OGLES2FilmTV.sln,1547,2009-08-14
......\......\.....\.........\OGLES2FilmTV.vcproj,26003,2009-09-10
......\......\BWFragShader.fsc,1004,2010-03-15
......\......\BWFragShader.fsh,315,2009-08-25
......\......\Camera.pvr,43828,2010-03-15
......\......\Content
......\......\.......\Alum.cpp,30850,2010-03-15
......\......\.......\BWFragShader.cpp,3520,2010-03-15
......\......\.......\Camera.cpp,119848,2010-03-15
......\......\.......\FilmTVScene.cpp,254325,2010-03-15
......\......\.......\Floor.cpp,121152,2010-03-15
......\......\.......\FragShader.cpp,2807,2010-03-15
......\......\.......\Skirting.cpp,30571,2010-03-15
......\......\.......\Table.cpp,30823,2010-03-15
......\......\.......\TV.cpp,120952,2010-03-15
......\......\.......\TVCase.cpp,30887,2010-03-15
......\......\.......\TVSpeaker.cpp,8313,2010-03-15
......\......\.......\VertShader.cpp,3753,2010-03-15
......\......\.......\Wall.cpp,480146,2010-03-15
......\......\content.mak,5195,2009-09-10
......\......\FilmTVScene.pod,97954,2009-09-21
......\......\Floor.pvr,43828,2010-03-15
......\......\FragShader.fsc,772,2010-03-15
......\......\FragShader.fsh,195,2009-08-14
......\......\OGLES2FilmTV.cpp,23694,2010-03-15
......\......\Skirting.pvr,11060,2010-03-15
......\......\Table.pvr,11060,2010-03-15
......\......\TV.pvr,43828,2010-03-15
......\......\TVCase.pvr,11060,2010-03-15
......\......\TVSpeaker.pvr,2868,2010-03-15
......\......\VertShader.vsc,965,2010-03-15
......\......\VertShader.vsh,558,2009-09-21
......\......\Wall.pvr,174900,2010-03-15

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • 使用DirectShow播放Mpeg等媒体类型
    说明:  使用DirectShow播放Mpeg等媒体类型 VC开发环境(use DirectShow broadcast media types such as MPEG VC Development Environment)
    2005-11-07 20:11:08下载
    积分:1
  • 永乐软件
    说明:  文档一体化系统是从档案管理的实际情况出发而研发的,总体上力求简明、实用和功能完备;操作风格上,尽可能地向大家所熟悉的微软产品靠近。它具有文档一体化功能,乡镇、机关档案室可以从收发文登记开始管理,以归档类目为桥梁,通过归档操作,最终完成归档工作。此系统启运方便快捷。(Document integration system is developed from the actual situation of archives management, and strives to be concise, practical and functional in general. In terms of operation style, it is as close as possible to Microsoft products that you are familiar with. It has the function of document integration. Township and government archives office can start management from the registration of receiving and receiving documents, take the archiving category as a bridge, and finally complete the archiving work through the archiving operation. This system is easy to operate.)
    2020-06-23 23:40:01下载
    积分:1
  • H.248
    介绍有关H.248的内容 相当有用 价值比较高(H。248)
    2009-11-19 20:49:19下载
    积分:1
  • programming_pearls
    Jon Bentley的《编程珠玑》 本书针对程序设计人员探讨了一系列的实际问题,这些问题是对现实中常见问题的归纳总结。作者虽然没有给出解决这些问题的具体代码,但始终非常富有洞察力和创造力地围绕着这些折磨程序员的实际问题展开讨论,从而引导读者理解问题并学会解决问题的技能,这些都是程序员实际编程生涯中的基本技能。为此,本书给出了一些精心设计的有趣而且颇具指导意义的程序,这些程序能够为那些复杂的编程问题提供清晰而且完备的解决思路,书中还充满了对实用程序设计技巧及基本设计原则的清晰而睿智的描述。 ()
    2008-07-18 15:59:29下载
    积分:1
  • C# WPF把彩色图片转换为灰度图
    C# 把彩色图片转换为灰度图,这是一个基于WPF的C#图像处理程序,图像彩色转换黑白,支持的图像文件格式为:JPeg,Gif,Bmp,etc。   程序主要实现两个功能,一是将彩色转换为索引像素格式、二是将彩色转换为黑白像素格式,对应于窗口中的按钮,可查看对应功能的演示:   将彩色转换为黑白像素格式,核心代码如下:   TransformedBitmap MyRotatedBitmapSource = new TransformedBitmap();   MyRotatedBitmapSource.BeginInit();   MyRotatedBitmapSource.Source = (System.Windows.Media.Imaging.BitmapSource)this.image1.Source;   MyRotatedBitmapSource.Transform = new RotateTransform(270);   MyRotatedBitmapSource.EndInit();   FormatConvertedBitmap MyFormatedBitmap = new FormatConvertedBitmap();   MyFormatedBitmap.BeginInit();   MyFormatedBitmap.Source = MyRotatedBitmapSource;   MyFormatedBitmap.DestinationFormat = PixelFormats.BlackWhite;   MyFormatedBitmap.EndInit();   this.image1.Source = MyFormatedBitmap;   完整源码例子请在本页下载,运行效果截图如下图示。
    2022-02-01 21:42:57下载
    积分:1
  • 基于移动平均线的自动交易程
    说明:  移动平均,基于移动平均线的自动交易程序,(move average ,the new .)
    2020-06-18 01:40:01下载
    积分:1
  • STM32F030_AD
    stm32f030的AD程序,寄存器版本的,喜欢的朋友可以下载调试。(Stm32f030 AD program, register version, like friends can download and debug.)
    2018-11-30 09:41:26下载
    积分:1
  • html5 仿微信录音功能
    html5 仿微信录音功能   自己手动做的
    2022-02-20 18:07:24下载
    积分:1
  • COMP51V4
    һ
    2006-01-07 12:33:07下载
    积分:1
  • SkypeMorph
    基于Skype通信的流量混淆技术,用于接入Tor网络匿名通信。影响较大。SkypeMorph主要使用C++语言编写,对开发者要求较高。
    2022-02-22 03:51:33下载
    积分:1
  • 696518资源总数
  • 104271会员总数
  • 57今日下载