Changeset 1a530df in opengl-game for color.vert


Ignore:
Timestamp:
Apr 6, 2018, 4:21:03 AM (7 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
feature/imgui-sdl, master, points-test
Children:
f70ab75
Parents:
046ce72
Message:

Design an algorithm for rendering objects using colors or shaders and try to use a ubo for storing model matrices

File:
1 edited

Legend:

Unmodified
Added
Removed
  • color.vert

    r046ce72 r1a530df  
    11#version 410
     2
     3layout (std140) uniform model_block {
     4   mat4 M;
     5};
    26
    37uniform mat4 model, view, proj;
Note: See TracChangeset for help on using the changeset viewer.