Lines Matching refs:token_position
6822 std::size_t token_position = std::string::npos;
6825 while ((token_position = vs_body.find(token_texture_data_type)) != std::string::npos)
6827 vs_body.replace(token_position, strlen(token_texture_data_type), texture_sampler_data_type_glsl);
6830 while ((token_position = vs_body.find(token_texture_sampler)) != std::string::npos)
6832 vs_body.replace(token_position, strlen(token_texture_sampler), texture_sampler_glsl);
6835 while ((token_position = vs_body.find(token_texture_swizzle)) != std::string::npos)
6837 vs_body.replace(token_position, strlen(token_texture_swizzle), texture_swizzle_glsl);
6840 while ((token_position = vs_body.find(token_view_data_type)) != std::string::npos)
6842 vs_body.replace(token_position, strlen(token_view_data_type), view_sampler_data_type_glsl);
6845 while ((token_position = vs_body.find(token_view_sampler)) != std::string::npos)
6847 vs_body.replace(token_position, strlen(token_view_sampler), view_sampler_glsl);
6850 while ((token_position = vs_body.find(token_view_swizzle)) != std::string::npos)
6852 vs_body.replace(token_position, strlen(token_view_swizzle), view_swizzle_glsl);