It’s that time again. Personally I think GDC this year was more interesting that a few preceding ones. Next-gen consoles have arrived, mobile gaming is really big still, and a quality Virtual Reality is becoming a reality.

PowerVR Ray Tracing Hardware and Mobile Graphics

ImgTec announced its upcoming mobile GPU, PowerVR GR6500, which features dedicated ray tracing units on top of its rasterization capabilities. It has a Ray Tracing Unit (RTU) which uses fixed-function math to perform ray tracing intersection queries and a scene hierarchy generator to speed up dynamic object updates. You can program it by writing ray shaders for OpenRL APIs. It makes a hybrid approach feasible, where ray tracing is used only for stuff it’s good at like shadowing, reflection, and refraction in addition to a regular rasterization. Unity showcased its editor using this technology for interactive real-time lightmap previews. It’s interesting that this kind of hardware innovation came from a mobile chip company rather than traditional a GPU powerhouse like NVIDIA or AMD. But, if you think of it, it makes sense. Arithmetic performance of the latest mobile GPUs has already reached that of previous generation consoles like Xbox 360. But, its bandwidth still remains quite limited compared to the previous gen consoles because of power limitation of mobile devices. Dedicating a small portion of its die space to ray tracing, which can spend less bandwidth to achieve the same effects previously mentioned in comparison to rasterization, can be a win to circumvent such a constraint. As they say, constraints breed creativity. The chip is not yet in production and it’s yet to be seen that other GPU manufactures will follow suit or not, but it remains true that this is really an interesting time for graphics coders.

There have been a few talks targeted for enabling console-level mobile graphics from PowerVR, Qualcomm, and Epic Games. Mobile GPUs usually do a tile-based rendering except Tegra one from NVIDIA, but there seems to be considerable differences even among tile-based GPUs from different vendors, which graphics codes should be aware of, to achieve full potential of each hardware.

VR is the next big thing

Kickstarter-born Oculus Rift recently has become an object of attention with great reviews from everywhere, its second hardware coming up, and a few great gamedev talents, including venerable John Carmack, joining it. (In related news, joined Oculus Rift, or more precisely Facebook.) But, in this GDC, the one who revealed an ace up its sleeve was Sony. Its aptly named Project Morpheus seems to have the same goal overall as Rift, but with its PlayStation 4 ecosystem including its camera and Move controller. According to SCE Worldwide Studios President Shuhei Yoshida, It has been in the works since 2010. The current prototype features a head-mounted display with 1080p resolution and a 90 degree field of view and seems to use Playstation Camera to track head orientation and movement. It’s still unclear what its final spec will look like and when the final product will be released. VR is a totally new medium whose scope extends beyond the domain of video games, as the Sony presentation emphasized, and it’ll be very interesting for us, game developers, both as a player and a developer, to see how these unfold in the coming years.

War of Game Engines

Epic Games introduced a $19 monthly subscription model (with 5 percent of revenue royalty payment) for Unreal Engine 4. Right after this announcement, Crytek tried to undercut it by announcing a %9.90 monthly subscription without any royalty for its CryEngine. Ostensibly, the CryEngine deal sounds much better if we naively assume both have similar capabilities, but there is a big caveat: Crytek deal doesn’t provide a full source code access like the Unreal one. Epic Games even allows keeping the source code after the subscription expired. In other words, as a programmer, you can dig into its latest source code and try to learn all its tricks & techniques with just twenty bucks, if you have time & passion for it. What a bold move. Unity also didn’t sit on its hands. It announced the latest incarnation of its engine, Unity 5, with impressive features like physically-based shading and WebGL deployment.

DirectX is not dead

It’s been a while since DirectX 11 came out. Microsoft also seemed to signal that the announcement of OpenGL ES 3.1.

Misc

A math tutorial by Code Clinic: How to Write Code the Compiler Can Actually Optimize. He also shows how zip archiving can be abused to measure information density of some data used in your code.

(I posted this article to my personal blog, too.)

Links