├── README.md ├── libovr-0.3.x ├── README.md ├── glsl110 │ ├── README.md │ ├── basic │ │ ├── chromatic.frag │ │ ├── common.vert │ │ └── nochroma.frag │ └── texture-lookup │ │ ├── common.vert │ │ ├── ovr_make_texture.frag │ │ ├── ovr_make_texture_chromatic.frag │ │ ├── texture_distortion.frag │ │ └── texture_distortion_chromatic.frag └── glsl150 │ ├── README.md │ ├── base │ ├── barrel.frag │ ├── barrel.geom │ ├── barrel_left.geom │ ├── barrel_right.geom │ └── empty.shdr │ └── experimental │ ├── barrel.frag │ ├── barrel.geom │ ├── barrelChroma.frag │ ├── barrel_left.geom │ ├── barrel_right.geom │ └── empty.shdr └── libovr-0.4.x ├── README.md └── glsl110 ├── README.md ├── rift.frag ├── rift.vert ├── rift_chromatic.frag ├── rift_chromatic.vert ├── rift_chromatic_timewarp.vert └── rift_timewarp.vert /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/README.md -------------------------------------------------------------------------------- /libovr-0.3.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/README.md -------------------------------------------------------------------------------- /libovr-0.3.x/glsl110/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl110/README.md -------------------------------------------------------------------------------- /libovr-0.3.x/glsl110/basic/chromatic.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl110/basic/chromatic.frag -------------------------------------------------------------------------------- /libovr-0.3.x/glsl110/basic/common.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl110/basic/common.vert -------------------------------------------------------------------------------- /libovr-0.3.x/glsl110/basic/nochroma.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl110/basic/nochroma.frag -------------------------------------------------------------------------------- /libovr-0.3.x/glsl110/texture-lookup/common.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl110/texture-lookup/common.vert -------------------------------------------------------------------------------- /libovr-0.3.x/glsl110/texture-lookup/ovr_make_texture.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl110/texture-lookup/ovr_make_texture.frag -------------------------------------------------------------------------------- /libovr-0.3.x/glsl110/texture-lookup/ovr_make_texture_chromatic.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl110/texture-lookup/ovr_make_texture_chromatic.frag -------------------------------------------------------------------------------- /libovr-0.3.x/glsl110/texture-lookup/texture_distortion.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl110/texture-lookup/texture_distortion.frag -------------------------------------------------------------------------------- /libovr-0.3.x/glsl110/texture-lookup/texture_distortion_chromatic.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl110/texture-lookup/texture_distortion_chromatic.frag -------------------------------------------------------------------------------- /libovr-0.3.x/glsl150/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl150/README.md -------------------------------------------------------------------------------- /libovr-0.3.x/glsl150/base/barrel.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl150/base/barrel.frag -------------------------------------------------------------------------------- /libovr-0.3.x/glsl150/base/barrel.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl150/base/barrel.geom -------------------------------------------------------------------------------- /libovr-0.3.x/glsl150/base/barrel_left.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl150/base/barrel_left.geom -------------------------------------------------------------------------------- /libovr-0.3.x/glsl150/base/barrel_right.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl150/base/barrel_right.geom -------------------------------------------------------------------------------- /libovr-0.3.x/glsl150/base/empty.shdr: -------------------------------------------------------------------------------- 1 | #version 150 2 | 3 | void main() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /libovr-0.3.x/glsl150/experimental/barrel.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl150/experimental/barrel.frag -------------------------------------------------------------------------------- /libovr-0.3.x/glsl150/experimental/barrel.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl150/experimental/barrel.geom -------------------------------------------------------------------------------- /libovr-0.3.x/glsl150/experimental/barrelChroma.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl150/experimental/barrelChroma.frag -------------------------------------------------------------------------------- /libovr-0.3.x/glsl150/experimental/barrel_left.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl150/experimental/barrel_left.geom -------------------------------------------------------------------------------- /libovr-0.3.x/glsl150/experimental/barrel_right.geom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.3.x/glsl150/experimental/barrel_right.geom -------------------------------------------------------------------------------- /libovr-0.3.x/glsl150/experimental/empty.shdr: -------------------------------------------------------------------------------- 1 | #version 150 2 | 3 | void main() 4 | { 5 | } 6 | -------------------------------------------------------------------------------- /libovr-0.4.x/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.4.x/README.md -------------------------------------------------------------------------------- /libovr-0.4.x/glsl110/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.4.x/glsl110/README.md -------------------------------------------------------------------------------- /libovr-0.4.x/glsl110/rift.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.4.x/glsl110/rift.frag -------------------------------------------------------------------------------- /libovr-0.4.x/glsl110/rift.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.4.x/glsl110/rift.vert -------------------------------------------------------------------------------- /libovr-0.4.x/glsl110/rift_chromatic.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.4.x/glsl110/rift_chromatic.frag -------------------------------------------------------------------------------- /libovr-0.4.x/glsl110/rift_chromatic.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.4.x/glsl110/rift_chromatic.vert -------------------------------------------------------------------------------- /libovr-0.4.x/glsl110/rift_chromatic_timewarp.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.4.x/glsl110/rift_chromatic_timewarp.vert -------------------------------------------------------------------------------- /libovr-0.4.x/glsl110/rift_timewarp.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dghost/glslRiftDistort/HEAD/libovr-0.4.x/glsl110/rift_timewarp.vert --------------------------------------------------------------------------------