X-Git-Url: https://git.sesse.net/?p=movit;a=blobdiff_plain;f=effect_chain.cpp;h=5e43474c457e8cc7dca3db7054fb8e6b6581e3d8;hp=30dc3e499a7c334f4d0a8e867e9ebbf2d97dd901;hb=96fd7f56bf3e5a8e769f9982505889e0273addeb;hpb=0d964b485070dcc0a9b6874152204dd13112027d diff --git a/effect_chain.cpp b/effect_chain.cpp index 30dc3e4..5e43474 100644 --- a/effect_chain.cpp +++ b/effect_chain.cpp @@ -1,5 +1,3 @@ -#define GL_GLEXT_PROTOTYPES 1 - #include #include #include @@ -51,6 +49,14 @@ EffectChain::EffectChain(float aspect_nom, float aspect_denom, ResourcePool *res } else { owns_resource_pool = false; } + + // Generate a VBO with some data in (shared position and texture coordinate data). + float vertices[] = { + 0.0f, 2.0f, + 0.0f, 0.0f, + 2.0f, 0.0f + }; + vbo = generate_vbo(2, GL_FLOAT, sizeof(vertices), vertices); } EffectChain::~EffectChain() @@ -66,6 +72,8 @@ EffectChain::~EffectChain() if (owns_resource_pool) { delete resource_pool; } + glDeleteBuffers(1, &vbo); + check_error(); } Input *EffectChain::add_input(Input *input) @@ -448,6 +456,14 @@ void EffectChain::compile_glsl_program(Phase *phase) } phase->glsl_program_num = resource_pool->compile_glsl_program(vert_shader, frag_shader, frag_shader_outputs); + GLint position_attribute_index = glGetAttribLocation(phase->glsl_program_num, "position"); + GLint texcoord_attribute_index = glGetAttribLocation(phase->glsl_program_num, "texcoord"); + if (position_attribute_index != -1) { + phase->attribute_indexes.insert(position_attribute_index); + } + if (texcoord_attribute_index != -1) { + phase->attribute_indexes.insert(texcoord_attribute_index); + } // Collect the resulting location numbers for each uniform. collect_uniform_locations(phase->glsl_program_num, &phase->uniforms_sampler2d); @@ -1699,22 +1715,16 @@ void EffectChain::render_to_fbo(GLuint dest_fbo, unsigned width, unsigned height glDepthMask(GL_FALSE); check_error(); - // Generate a VAO. All the phases should have exactly the same vertex attributes, - // so it's safe to reuse this. - float vertices[] = { - 0.0f, 2.0f, - 0.0f, 0.0f, - 2.0f, 0.0f - }; - + // Generate a VAO that will be used during the entire execution, + // and bind the VBO, since it contains all the data. GLuint vao; glGenVertexArrays(1, &vao); check_error(); glBindVertexArray(vao); check_error(); - - GLuint position_vbo = fill_vertex_attribute(phases[0]->glsl_program_num, "position", 2, GL_FLOAT, sizeof(vertices), vertices); - GLuint texcoord_vbo = fill_vertex_attribute(phases[0]->glsl_program_num, "texcoord", 2, GL_FLOAT, sizeof(vertices), vertices); // Same as vertices. + glBindBuffer(GL_ARRAY_BUFFER, vbo); + check_error(); + set bound_attribute_indices; set generated_mipmaps; @@ -1740,7 +1750,7 @@ void EffectChain::render_to_fbo(GLuint dest_fbo, unsigned width, unsigned height CHECK(dither_effect->set_int("output_height", height)); } } - execute_phase(phase, phase_num == phases.size() - 1, &output_textures, &generated_mipmaps); + execute_phase(phase, phase_num == phases.size() - 1, &bound_attribute_indices, &output_textures, &generated_mipmaps); if (do_phase_timing) { glEndQuery(GL_TIME_ELAPSED); } @@ -1757,9 +1767,10 @@ void EffectChain::render_to_fbo(GLuint dest_fbo, unsigned width, unsigned height glUseProgram(0); check_error(); - cleanup_vertex_attribute(phases[0]->glsl_program_num, "position", position_vbo); - cleanup_vertex_attribute(phases[0]->glsl_program_num, "texcoord", texcoord_vbo); - + glBindBuffer(GL_ARRAY_BUFFER, 0); + check_error(); + glBindVertexArray(0); + check_error(); glDeleteVertexArrays(1, &vao); check_error(); @@ -1815,7 +1826,10 @@ void EffectChain::print_phase_timing() printf("Total: %5.1f ms\n", total_time_ms); } -void EffectChain::execute_phase(Phase *phase, bool last_phase, map *output_textures, set *generated_mipmaps) +void EffectChain::execute_phase(Phase *phase, bool last_phase, + set *bound_attribute_indices, + map *output_textures, + set *generated_mipmaps) { GLuint fbo = 0; @@ -1828,9 +1842,7 @@ void EffectChain::execute_phase(Phase *phase, bool last_phase, mapinsert(make_pair(phase, tex_num)); } - const GLuint glsl_program_num = phase->glsl_program_num; - check_error(); - glUseProgram(glsl_program_num); + glUseProgram(phase->glsl_program_num); check_error(); // Set up RTT inputs for this phase. @@ -1861,7 +1873,7 @@ void EffectChain::execute_phase(Phase *phase, bool last_phase, mapeffects.size(); ++i) { Node *node = phase->effects[i]; unsigned old_sampler_num = sampler_num; - node->effect->set_gl_state(glsl_program_num, phase->effect_ids[node], &sampler_num); + node->effect->set_gl_state(phase->glsl_program_num, phase->effect_ids[node], &sampler_num); check_error(); if (node->effect->is_single_texture()) { @@ -1876,12 +1888,34 @@ void EffectChain::execute_phase(Phase *phase, bool last_phase, map::iterator attr_it = bound_attribute_indices->begin(); + attr_it != bound_attribute_indices->end(); ) { + if (phase->attribute_indexes.count(*attr_it) == 0) { + glDisableVertexAttribArray(*attr_it); + check_error(); + bound_attribute_indices->erase(attr_it++); + } else { + ++attr_it; + } + } - glUseProgram(0); - check_error(); + // Set up the new attributes, if needed. + for (set::iterator attr_it = phase->attribute_indexes.begin(); + attr_it != phase->attribute_indexes.end(); + ++attr_it) { + if (bound_attribute_indices->count(*attr_it) == 0) { + glEnableVertexAttribArray(*attr_it); + check_error(); + glVertexAttribPointer(*attr_it, 2, GL_FLOAT, GL_FALSE, 0, BUFFER_OFFSET(0)); + check_error(); + bound_attribute_indices->insert(*attr_it); + } + } + glDrawArrays(GL_TRIANGLES, 0, 3); + check_error(); + for (unsigned i = 0; i < phase->effects.size(); ++i) { Node *node = phase->effects[i]; node->effect->clear_gl_state();