Project

General

Profile

« Previous | Next » 

Revision 96e3b88a

Added by Leszek Koltunski over 3 years ago

Introducing UBO to Effect Queues: step 1.

View differences:

src/main/java/org/distorted/library/effect/MatrixEffect.java
25 25
 */
26 26
public abstract class MatrixEffect extends Effect
27 27
  {
28
/**
29
 * 7: 4 per-effect interpolated values + 3 dimensional center.
30
 */
31
  public static final int NUM_UNIFORMS = 7;
28
  /**
29
   * 7: 4 per-effect interpolated values + 3 dimensional center.
30
   */
31
  public static final int NUM_FLOAT_UNIFORMS = 7;
32
  /**
33
   * 0: nothing
34
   */
35
  public static final int NUM_INT_UNIFORMS = 1;
36

  
32 37
  static final int CENTER_OFFSET = 4;
33 38

  
34 39
///////////////////////////////////////////////////////////////////////////////////////////////////

Also available in: Unified diff