Commit d9e330dc authored by reveman's avatar reveman Committed by Commit bot

gpu: Allow CopyTexImage to be called with StreamTextures and GLImageSync.

BUG=374962
R=sievers@chromium.org

Review URL: https://codereview.chromium.org/549253003

Cr-Commit-Position: refs/heads/master@{#293855}
parent 2b2540c1
......@@ -203,7 +203,6 @@ void StreamTexture::ReleaseTexImage(unsigned target) {
}
bool StreamTexture::CopyTexImage(unsigned target) {
NOTREACHED();
return false;
}
......
......@@ -74,7 +74,6 @@ void GLImageImpl::ReleaseTexImage(unsigned target) {
}
bool GLImageImpl::CopyTexImage(unsigned target) {
NOTREACHED();
return false;
}
......
......@@ -85,7 +85,6 @@ void GLImageSync::ReleaseTexImage(unsigned target) {
}
bool GLImageSync::CopyTexImage(unsigned target) {
NOTREACHED();
return false;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment