Changeset 1992 for trunk/tutorial
- Timestamp:
- Oct 9, 2012, 1:15:56 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tutorial/11_fractal.cpp
r1988 r1992 446 446 /* Create a texture of half the width and twice the height 447 447 * so that we can upload four different subimages each frame. */ 448 m_texture = new Texture(ivec2(m_size.x / 2, m_size.y * 2)); 448 m_texture = new Texture(ivec2(m_size.x / 2, m_size.y * 2), 449 PixelFormat::A8B8G8R8); 449 450 450 451 /* Ensure the texture data is complete at least once, otherwise
Note: See TracChangeset
for help on using the changeset viewer.