public static DMDFrame DMDFrameCreate(DMDSize size) { DMDFrame result = new DMDFrame(); result.buffer = new byte[size.width * size.height]; result.size = size; return(result); }
public static DMDSize DMDSizeMake(int w, int h) { DMDSize s = new DMDSize() { width = w, height = h }; return(s); }
public static DMDSize DMDSizeMake(int w, int h) { DMDSize s = new DMDSize() { width = w, height = h }; return s; }
public static DMDFrame DMDFrameCreate(DMDSize size) { DMDFrame result = new DMDFrame(); result.buffer = new byte[size.width * size.height]; result.size = size; return result; }