Skip to content

Commit dd42c36

Browse files
committed
create empty loadPixels() method
Signed-off-by: Umair Khan <[email protected]>
1 parent d07b8c4 commit dd42c36

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/in/omerjerk/processing/video/android/Capture.java

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,10 +114,16 @@ public void start() {
114114
mCameraHandler.sendMessage(mCameraHandler.obtainMessage(
115115
CameraHandler.MSG_START_PREVIEW));
116116
}
117-
117+
118118
public boolean available() {
119119
return isAvailable;
120120
}
121+
122+
@Override
123+
public void loadPixels() {
124+
super.loadPixels();
125+
//TODO: implement loadPixels intelligently
126+
}
121127

122128
public void pause() {
123129
log("pause called");

0 commit comments

Comments
 (0)