Lines Matching defs:reason
84 std::ostringstream reason;
85 reason << "Required " << requiredVS << " VS image uniforms but only " << imagesVS << " available."
87 OutputNotSupported(reason.str());
100 std::ostringstream reason;
101 reason << "Required " << requiredTCS << " TCS image uniforms but only " << imagesTCS << " available."
103 OutputNotSupported(reason.str());
116 std::ostringstream reason;
117 reason << "Required " << requiredTES << " TES image uniforms but only " << imagesTES << " available."
119 OutputNotSupported(reason.str());
132 std::ostringstream reason;
133 reason << "Required " << requiredGS << " GS image uniforms but only " << imagesGS << " available."
135 OutputNotSupported(reason.str());
171 std::ostringstream reason;
172 reason << "Required " << required << " image samples but only " << i << " available." << std::endl;
173 OutputNotSupported(reason.str());