5e8f45faf1
This updates all our callsites in preparation for removing the #include "include/core/SkColorSpace.h" from SkImageInfo.h According to go/chrome-includes [1], this will save ~150MB (0.07%) from the compilation size. I think SkColorSpace is a big include because it loads the skcms header, which is big. The follow-on CL will remove that link, once clients have been updated as well. [1] https://commondatastorage.googleapis.com/chromium-browser-clang/chrome_includes_2022-03-31_124042.html#view=edges&filter=%5Ethird_party%2Fskia%2Finclude%2Fcore%2FSkImageInfo%5C.h%24&sort=asize&reverse=&includer=%5Ethird_party%2Fskia%2Finclude%2Fcore%2FSkImageInfo%5C.h%24&included=&limit=1000 Change-Id: I1b5ff491ac495317b0e5af3a2082b080d43697ae Bug: skia:13052 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/525639 Reviewed-by: Robert Phillips <robertphillips@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com> Reviewed-by: Florin Malita <fmalita@google.com> Commit-Queue: Kevin Lubick <kjlubick@google.com>
75 lines
3.2 KiB
C++
75 lines
3.2 KiB
C++
/*
|
|
* Copyright 2020 Google LLC
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#include "tools/gpu/BackendTextureImageFactory.h"
|
|
|
|
#include "include/core/SkColorSpace.h"
|
|
#include "include/core/SkImage.h"
|
|
#include "include/core/SkPixmap.h"
|
|
#include "include/gpu/GrBackendSurface.h"
|
|
#include "include/gpu/GrDirectContext.h"
|
|
#include "src/core/SkAutoPixmapStorage.h"
|
|
#include "tools/gpu/ManagedBackendTexture.h"
|
|
|
|
namespace sk_gpu_test {
|
|
sk_sp<SkImage> MakeBackendTextureImage(GrDirectContext* dContext,
|
|
const SkPixmap& pixmap,
|
|
GrRenderable renderable,
|
|
GrSurfaceOrigin origin) {
|
|
auto mbet = ManagedBackendTexture::MakeWithData(dContext,
|
|
pixmap,
|
|
origin,
|
|
renderable,
|
|
GrProtected::kNo);
|
|
if (!mbet) {
|
|
return nullptr;
|
|
}
|
|
return SkImage::MakeFromTexture(dContext,
|
|
mbet->texture(),
|
|
origin,
|
|
pixmap.colorType(),
|
|
pixmap.alphaType(),
|
|
pixmap.refColorSpace(),
|
|
ManagedBackendTexture::ReleaseProc,
|
|
mbet->releaseContext());
|
|
}
|
|
|
|
sk_sp<SkImage> MakeBackendTextureImage(GrDirectContext* dContext,
|
|
const SkImageInfo& info,
|
|
SkColor4f color,
|
|
GrMipmapped mipmapped,
|
|
GrRenderable renderable,
|
|
GrSurfaceOrigin origin) {
|
|
if (info.alphaType() == kOpaque_SkAlphaType) {
|
|
color = color.makeOpaque();
|
|
} else if (info.alphaType() == kPremul_SkAlphaType) {
|
|
auto pmColor = color.premul();
|
|
color = {pmColor.fR, pmColor.fG, pmColor.fB, pmColor.fA};
|
|
}
|
|
auto mbet = ManagedBackendTexture::MakeWithData(dContext,
|
|
info.width(),
|
|
info.height(),
|
|
info.colorType(),
|
|
color,
|
|
mipmapped,
|
|
renderable,
|
|
GrProtected::kNo);
|
|
if (!mbet) {
|
|
return nullptr;
|
|
}
|
|
return SkImage::MakeFromTexture(dContext,
|
|
mbet->texture(),
|
|
origin,
|
|
info.colorType(),
|
|
info.alphaType(),
|
|
info.refColorSpace(),
|
|
ManagedBackendTexture::ReleaseProc,
|
|
mbet->releaseContext());
|
|
}
|
|
|
|
} // namespace sk_gpu_test
|