compositor video { technique { texture rt0 target_width target_height PF_R8G8B8 target rt0 { input previous } target_output { // Start with clear output input none pass render_quad { material fijuuu/video input 0 rt0 } } } } compositor "farked" { technique { // Temporary textures texture rt0 target_width target_height PF_A8R8G8B8 target rt0 { // Render output from previous compositor (or original scene) input previous } target_output { // Start with clear output input none // Draw a fullscreen quad with the black and white image pass render_quad { // Renders a fullscreen quad with a material material fijuuu/farked input 0 rt0 } } } } compositor "oldfarked" { technique { // Temporary textures texture rt0 target_width target_height PF_A8R8G8B8 target rt0 { // Render output from previous compositor (or original scene) input previous } target_output { // Start with clear output input none // Draw a fullscreen quad with the black and white image pass render_quad { // Renders a fullscreen quad with a material material fijuuu/oldfarked input 0 rt0 } } } }