X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Frender%2Frenderer.h;h=99c8c5002b242da1d18c694d77996ff8ded0607c;hb=HEAD;hp=4e70204240f3de2591d987d65551cc44379f97d5;hpb=d638587797a68e3095fb54cd2616f7b2f37a30ee;p=libs%2Fgl.git diff --git a/source/render/renderer.h b/source/render/renderer.h index 4e702042..0fa19346 100644 --- a/source/render/renderer.h +++ b/source/render/renderer.h @@ -63,14 +63,25 @@ public: }; private: - struct BoundTexture + struct SampledTexture { - Tag tag; - mutable int binding = -1; const Texture *texture = 0; const Sampler *sampler = 0; int level = -1; + + SampledTexture() = default; + SampledTexture(const Texture *t, const Sampler *s, int l): texture(t), sampler(s), level(l) { } + + bool operator==(const SampledTexture &o) const { return texture==o.texture && sampler==o.sampler && level==o.level; } + }; + + template + struct BoundResource + { + Tag tag; + mutable int binding = -1; int replaced = -1; + T resource; }; struct BoundProgramData @@ -115,7 +126,7 @@ private: State *current_state = 0; ProgramData standard_shdata; std::vector shdata_stack; - std::vector texture_stack; + std::vector> texture_stack; const Texture &placeholder_texture; const Sampler &default_sampler; PipelineState *last_pipeline = 0; @@ -141,7 +152,7 @@ public: void push_state(); /** Restores a previously saved state. Must be matched with an earlier - push_state call. */ + push_state() call. */ void pop_state(); private: @@ -186,10 +197,16 @@ public: void set_texture(Tag, const Texture *, const Sampler * = 0); void set_texture(Tag, const Texture *, int, const Sampler * = 0); + void set_storage_texture(Tag, const Texture *); private: + template + static void set_resource(std::vector> &, unsigned &, Tag, const T &); + void flush_shader_data(); - void flush_textures(); + + template + static void flush_resources(std::vector> &, unsigned &); public: void set_vertex_setup(const VertexSetup *); @@ -211,12 +228,20 @@ public: /** Draws a batch of primitives. A shader must be active. */ void draw(const Batch &); - /** Draws multiple instances of a batch of primitives. A shader must be active. */ + /** Draws multiple instances of a batch of primitives. A shader must be + active. */ void draw_instanced(const Batch &, unsigned); +private: + void apply_batch(const Batch &); + +public: + /** Dispatches a compute operation. */ + void dispatch(unsigned, unsigned = 1, unsigned = 1); + /** Resolves multisample attachments from the active framebuffer into - target. */ - void resolve_multisample(Framebuffer &target); + their corresponding resolve attachments. */ + void resolve_multisample(); void begin_query(const QueryPool &, unsigned); void end_query(const QueryPool &, unsigned);