Skip to content
This repository has been archived by the owner on Feb 19, 2019. It is now read-only.

Commit

Permalink
Minor bug fixing
Browse files Browse the repository at this point in the history
Allow implementation of Shader
Fix IndexOutOfBoundsException
  • Loading branch information
ZeroMemes committed Aug 11, 2017
1 parent fdf9adf commit a59ed27
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ private static void rectangleGradient(float x1, float y1, float x2, float y2, in
c1 = color[0];
c2 = color[0];
c3 = color[1];
c4 = color[2];
c4 = color[1];
} else {
c1 = color[0];
c2 = color[1];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* @author Brady
* @since 7/23/2017 3:31 PM
*/
public final class ShaderProgram extends GLObject {
public class ShaderProgram extends GLObject {

/**
* Instance of the system supported shader adapter
Expand Down

0 comments on commit a59ed27

Please sign in to comment.