| 207 | } |
| 208 | |
| 209 | static void OutputTextureTransform(TextureTransform* p, int indent) |
| 210 | { |
| 211 | OutputArray("offset", p->m_Offset, indent); |
| 212 | OutputValue("rotation", p->m_Rotation, indent); |
| 213 | OutputArray("scale", p->m_Scale, indent); |
| 214 | if (p->m_Texcoord >= 0) |
| 215 | OutputValue("texcoord", p->m_Texcoord, indent); |
| 216 | } |
| 217 | |
| 218 | static void OutputTextureView(const char* name, TextureView* p, int indent) |
| 219 | { |
no test coverage detected