mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-08-26 15:35:14 +02:00
Allow MakePixelTexture to use a subrange.
For example, if it has a larger texture it wants to reuse, it can control this via texcoords. Let's keep it at top left, though.
This commit is contained in:
@@ -272,7 +272,7 @@ FramebufferManagerGLES::~FramebufferManagerGLES() {
|
||||
delete [] convBuf_;
|
||||
}
|
||||
|
||||
void FramebufferManagerGLES::MakePixelTexture(const u8 *srcPixels, GEBufferFormat srcPixelFormat, int srcStride, int width, int height) {
|
||||
void FramebufferManagerGLES::MakePixelTexture(const u8 *srcPixels, GEBufferFormat srcPixelFormat, int srcStride, int width, int height, float &u1, float &v1) {
|
||||
if (drawPixelsTex_ && (drawPixelsTexFormat_ != srcPixelFormat || drawPixelsTexW_ != width || drawPixelsTexH_ != height)) {
|
||||
glDeleteTextures(1, &drawPixelsTex_);
|
||||
drawPixelsTex_ = 0;
|
||||
|
||||
Reference in New Issue
Block a user