mirror of https://github.com/odrling/Aegisub
Fixed double clicking on video
Originally committed to SVN as r1074.
This commit is contained in:
parent
4b569de80d
commit
9292b79e1d
|
@ -550,6 +550,7 @@ GLuint VideoContext::GetFrameAsTexture(int n) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Load texture data
|
// Load texture data
|
||||||
|
glBindTexture(GL_TEXTURE_2D, lastTex);
|
||||||
glTexSubImage2D(GL_TEXTURE_2D,0,0,0,frame.pitch[0]/frame.GetBpp(0),frame.h,format,GL_UNSIGNED_BYTE,frame.data[0]);
|
glTexSubImage2D(GL_TEXTURE_2D,0,0,0,frame.pitch[0]/frame.GetBpp(0),frame.h,format,GL_UNSIGNED_BYTE,frame.data[0]);
|
||||||
if (glGetError() != 0) throw _T("Error uploading primary plane");
|
if (glGetError() != 0) throw _T("Error uploading primary plane");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue