#pragma once #include // Para SDL_Texture #include // Para SDL_Window #include namespace shader { bool init(SDL_Window *ventana, SDL_Texture *texturaBackBuffer, const std::string &vertexShader, const std::string &fragmentShader = ""); void render(); }