Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GL_TEXTURE_RECTANGLE texture target support #997

Merged
merged 4 commits into from Mar 30, 2017
Merged
Changes from 1 commit
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Prev

Update ImageData type in wrench.

  • Loading branch information
JerryShih committed Mar 30, 2017
commit bbfefccfba56a360e2e7f2c808f7b5609c0c1a67
@@ -220,8 +220,7 @@ impl webrender::ApiRecordingReceiver for JsonFrameWriter {
);
let bytes = match data {
&ImageData::Raw(ref v) => { (**v).clone() }
&ImageData::ExternalHandle(_) => { return; }
&ImageData::ExternalBuffer(_) => { return; }
&ImageData::External(_) => { return; }
&ImageData::Blob(_) => { return; }
};
self.images.insert(*key, CachedImage {
@@ -782,8 +782,7 @@ impl webrender::ApiRecordingReceiver for YamlFrameWriterReceiver {
);
let bytes = match data {
&ImageData::Raw(ref v) => { (**v).clone() }
&ImageData::ExternalHandle(_) => { return; }
&ImageData::ExternalBuffer(_) => { return; }
&ImageData::External(_) => { return; }
&ImageData::Blob(_) => { return; }
};
self.frame_writer.images.insert(*key, CachedImage {
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.