| 14 | } |
| 15 | |
| 16 | void DataWalker::walk ( vec4f x, TypeInfo * info ) { |
| 17 | if ( info->flags & TypeInfo::flag_refType ) { |
| 18 | walk(cast<char *>::to(x), info ); |
| 19 | } else { |
| 20 | walk((char *)&x, info ); |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | void DataWalker::walk_struct ( char * ps, StructInfo * si ) { |
| 25 | if ( ps && (si->flags & StructInfo::flag_class) ) { |
no test coverage detected