From de4f66e0239a736bce24e09c9a0b49b5bb92d84b Mon Sep 17 00:00:00 2001 From: Normand Briere <nbriere@noware.ca> Date: Tue, 23 Jul 2019 02:41:35 -0400 Subject: [PATCH] Min shader. --- cTexture.java | 17 +++++++---------- 1 files changed, 7 insertions(+), 10 deletions(-) diff --git a/cTexture.java b/cTexture.java index ed790cb..6c5d9f7 100644 --- a/cTexture.java +++ b/cTexture.java @@ -1,12 +1,5 @@ -/* - * To change this template, choose Tools | Templates - * and open the template in the editor. - */ +import java.awt.image.BufferedImage; -/** - * - * @author nbriere - */ public class cTexture implements java.io.Serializable { static final long serialVersionUID = 8278178842384985286L; @@ -38,6 +31,10 @@ } String name; - byte[] pigmentstream; - byte[] bumpstream; + + int pw, ph; + byte[] pigmentdata; + + int bw, bh; + byte[] bumpdata; } -- Gitblit v1.6.2