gl_rasterizer: Implement image bindings

This commit is contained in:
ReinUsesLisp 2019-07-12 02:01:27 -03:00
parent 5edf24b510
commit 6170337001
5 changed files with 106 additions and 32 deletions

View file

@ -62,6 +62,7 @@ public:
static constexpr std::size_t NumVertexAttributes = 32;
static constexpr std::size_t NumVaryings = 31;
static constexpr std::size_t NumTextureSamplers = 32;
static constexpr std::size_t NumImages = 8; // TODO(Rodrigo): Investigate this number
static constexpr std::size_t NumClipDistances = 8;
static constexpr std::size_t MaxShaderProgram = 6;
static constexpr std::size_t MaxShaderStage = 5;