Mercurial > games > semicongine
diff examples/E04_input.nim @ 532:5d457f7bb624
did: cleanup + auto-generate mvp-transformartion in shader code
author | Sam <sam@basx.dev> |
---|---|
date | Sun, 05 Feb 2023 11:39:11 +0700 |
parents | cfa230e1f3b9 |
children | 21c276c0a968 |
line wrap: on
line diff
--- a/examples/E04_input.nim Sun Feb 05 00:48:03 2023 +0700 +++ b/examples/E04_input.nim Sun Feb 05 11:39:11 2023 +0700 @@ -1,4 +1,3 @@ -import std/tables import std/enumerate import std/strutils import std/typetraits @@ -14,7 +13,7 @@ color: ColorAttribute[Vec4] transform: ModelTransformAttribute Uniforms = object - projection: Descriptor[Mat44] + projection: ViewProjectionTransform const arrow = @[ @@ -213,9 +212,7 @@ scene.add newThing("cursor", cursormesh) # upload data, prepare shaders, etc - const vertexShader = generateVertexShaderCode[VertexDataA, Uniforms](""" - out_position = uniforms.projection * transform * vec4(position, 1); - """) + const vertexShader = generateVertexShaderCode[VertexDataA, Uniforms]() const fragmentShader = generateFragmentShaderCode[VertexDataA]() pipeline = setupPipeline[VertexDataA, Uniforms, uint16]( myengine,