if (mProgram == null) {
throw new RuntimeException("Attempting to get program variable '" + mVarName
+ "' but the program is null!");
}
return mProgram.getHostValue(mVarName);
if (mProgram == null) {
throw new RuntimeException("Attempting to set program variable '" + mVarName
+ "' but the program is null!");
}
mProgram.setHostValue(mVarName, value);