Skip to content

Commit

Permalink
Up shader version to 150/OpenGL 3.2
Browse files Browse the repository at this point in the history
Up version to 0.6.4
  • Loading branch information
alexheretic committed Nov 24, 2017
1 parent 5d65a44 commit 4662aa1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gfx_glyph"
version = "0.6.3"
version = "0.6.4"
authors = ["Alex Butler <[email protected]>"]
description = "Fast GPU cached text rendering using gfx-rs & rusttype"
repository = "https://github.com/alexheretic/gfx-glyph"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ Have a look at


## Limitations
The current implementation supports OpenGL *(3.0 or later)*. However, other rendering languages (that are supported by gfx) should be easy enough to add. Send in your PRs!
The current implementation supports OpenGL *(3.2 or later)*. In future we'll support to the new gfx-rs next-gen shaders.
2 changes: 1 addition & 1 deletion src/shader/frag.glsl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#version 130
#version 150

uniform sampler2D font_tex;

Expand Down
2 changes: 1 addition & 1 deletion src/shader/vert.glsl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#version 130
#version 150

uniform mat4 transform;

Expand Down

0 comments on commit 4662aa1

Please sign in to comment.