package com.android.camera.support.glrenderer; import junit.framework.Assert; public class GLPaint { private float mLineWidth = 1f; private int mColor = 0; public void setColor(int color) { mColor = color; } public int getColor() { return mColor; } public void setLineWidth(float width) { Assert.assertTrue(width >= 0); mLineWidth = width; } public float getLineWidth() { return mLineWidth; } }