Home | History | Annotate | Download | only in renderer

Lines Matching defs:OutputType

19 // typedef ... OutputType: the type produced by this conversion
26 typedef T OutputType;
39 typedef ToT OutputType;
52 typedef T OutputType;
65 typedef float OutputType;
91 typedef float OutputType;
151 typedef typename Converter::OutputType OutputType;
155 static const std::size_t finalSize = WidenRule::finalWidth * sizeof(OutputType);
157 static void convertArray(const InputType *in, std::size_t stride, std::size_t n, OutputType *out)
163 copyComponent(out, ein, 0, static_cast<OutputType>(DefaultValueRule::zero()));
164 copyComponent(out, ein, 1, static_cast<OutputType>(DefaultValueRule::zero()));
165 copyComponent(out, ein, 2, static_cast<OutputType>(DefaultValueRule::zero()));
166 copyComponent(out, ein, 3, static_cast<OutputType>(DefaultValueRule::one()));
174 return convertArray(static_cast<const InputType*>(in), stride, n, static_cast<OutputType*>(out));
185 static void copyComponent(OutputType *out, const InputType *in, std::size_t elementindex, OutputType defaultvalue)