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