0ce2c54094
This reverts commitcf43fc6768
. Reason for revert: Fixed g3 Original change's description: > Revert "Reland "Take GrContext private, GrDDLContext inherit from GrRecordingContext"" > > This reverts commitff13ffbeac
. > > Reason for revert: Blink in g3 > > Original change's description: > > Reland "Take GrContext private, GrDDLContext inherit from GrRecordingContext" > > > > This reverts commit89bdc90ac8
. > > > > Reason for revert: Fix metal > > > > Original change's description: > > > Revert "Take GrContext private, GrDDLContext inherit from GrRecordingContext" > > > > > > This reverts commitd2daa94ede
. > > > > > > Reason for revert: Metaru > > > > > > Original change's description: > > > > Take GrContext private, GrDDLContext inherit from GrRecordingContext > > > > > > > > Woo! > > > > > > > > Change-Id: I8d201b709343dc18cad31ea740575285dd035f35 > > > > Docs-Preview: https://skia.org/?cl=317436 > > > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/317436 > > > > Reviewed-by: Robert Phillips <robertphillips@google.com> > > > > Reviewed-by: Brian Salomon <bsalomon@google.com> > > > > Commit-Queue: Adlai Holler <adlai@google.com> > > > > > > TBR=bsalomon@google.com,robertphillips@google.com,adlai@google.com > > > > > > Change-Id: I9b58dee285fbdc49ebc8e76df5da0fe224cf9787 > > > No-Presubmit: true > > > No-Tree-Checks: true > > > No-Try: true > > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/318758 > > > Reviewed-by: Adlai Holler <adlai@google.com> > > > Commit-Queue: Adlai Holler <adlai@google.com> > > > > TBR=bsalomon@google.com,robertphillips@google.com,adlai@google.com > > > > > > Change-Id: Id4b10795193a904cd4ed8c36e60e74abe3b6702a > > Docs-Preview: https://skia.org/?cl=318759 > > Cq-Include-Trybots: luci.skia.skia.primary:Build-Mac10.15.5-Clang-arm64-Debug-iOS_Metal,Build-Mac-Clang-x86_64-Debug-Metal > > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/318759 > > Commit-Queue: Adlai Holler <adlai@google.com> > > Reviewed-by: Adlai Holler <adlai@google.com> > > TBR=bsalomon@google.com,robertphillips@google.com,adlai@google.com > > Change-Id: Ib20fe933120d56b72efaec73a0bedec60bc28def > No-Presubmit: true > No-Tree-Checks: true > No-Try: true > Reviewed-on: https://skia-review.googlesource.com/c/skia/+/319184 > Commit-Queue: Adlai Holler <adlai@google.com> > Reviewed-by: Adlai Holler <adlai@google.com> TBR=bsalomon@google.com,robertphillips@google.com,adlai@google.com Change-Id: I4f01291f4b3bfbb8fd7dd8cf2bf8415430c3392e Docs-Preview: https://skia.org/?cl=322437 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/322437 Reviewed-by: Adlai Holler <adlai@google.com> Reviewed-by: Brian Salomon <bsalomon@google.com> Commit-Queue: Adlai Holler <adlai@google.com> Auto-Submit: Adlai Holler <adlai@google.com>
98 lines
3.2 KiB
C++
98 lines
3.2 KiB
C++
/*
|
|
* Copyright 2015 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
#ifndef fiddle_main_DEFINED
|
|
#define fiddle_main_DEFINED
|
|
|
|
#ifdef FIDDLE_BUILD_TEST
|
|
#include "include/core/SkCanvas.h"
|
|
#include "include/core/SkDocument.h"
|
|
#include "include/core/SkPictureRecorder.h"
|
|
#include "include/core/SkStream.h"
|
|
#include "include/core/SkSurface.h"
|
|
#include "include/gpu/GrDirectContext.h"
|
|
#include "include/gpu/gl/GrGLAssembleInterface.h"
|
|
#include "include/gpu/gl/GrGLInterface.h"
|
|
#else
|
|
#include "skia.h"
|
|
#endif
|
|
|
|
#include <memory>
|
|
#include <sstream>
|
|
|
|
extern GrBackendTexture backEndTexture;
|
|
extern GrBackendRenderTarget backEndRenderTarget;
|
|
extern GrBackendTexture backEndTextureRenderTarget;
|
|
extern SkBitmap source;
|
|
extern sk_sp<SkImage> image;
|
|
extern double duration; // The total duration of the animation in seconds.
|
|
extern double frame; // A value in [0, 1] of where we are in the animation.
|
|
|
|
namespace sk_gpu_test {
|
|
class GLTestContext;
|
|
} // namespace sk_gpu_test
|
|
|
|
struct DrawOptions {
|
|
DrawOptions(int w, int h, bool r, bool g, bool p, bool k, bool srgb, bool f16,
|
|
bool textOnly, const char* s,
|
|
GrMipmapped mipMapping,
|
|
int offScreenWidth,
|
|
int offScreenHeight,
|
|
int offScreenSampleCount,
|
|
GrMipmapped offScreenMipMapping)
|
|
: size(SkISize::Make(w, h))
|
|
, raster(r)
|
|
, gpu(g)
|
|
, pdf(p)
|
|
, skp(k)
|
|
, srgb(srgb)
|
|
, f16(f16)
|
|
, textOnly(textOnly)
|
|
, source(s)
|
|
, fMipMapping(mipMapping)
|
|
, fOffScreenWidth(offScreenWidth)
|
|
, fOffScreenHeight(offScreenHeight)
|
|
, fOffScreenSampleCount(offScreenSampleCount)
|
|
, fOffScreenMipMapping(offScreenMipMapping) {
|
|
// F16 mode is only valid for color correct backends.
|
|
SkASSERT(srgb || !f16);
|
|
}
|
|
SkISize size;
|
|
bool raster;
|
|
bool gpu;
|
|
bool pdf;
|
|
bool skp;
|
|
bool srgb;
|
|
bool f16;
|
|
bool textOnly;
|
|
const char* source;
|
|
|
|
// This flag is used when a GPU texture resource is created and exposed as a GrBackendTexture.
|
|
// In this case the resource is created with extra room to accomodate mipmaps.
|
|
// TODO: The SkImage::makeTextureImage API would need to be widened to allow this to be true
|
|
// for the non-backend gpu SkImages.
|
|
GrMipmapped fMipMapping;
|
|
|
|
// Parameters for an GPU offscreen resource exposed as a GrBackendRenderTarget
|
|
int fOffScreenWidth;
|
|
int fOffScreenHeight;
|
|
int fOffScreenSampleCount;
|
|
// TODO: should we also expose stencilBits here? How about the config?
|
|
|
|
GrMipmapped fOffScreenMipMapping; // only applicable if the offscreen is also textureable
|
|
};
|
|
|
|
extern DrawOptions GetDrawOptions();
|
|
extern void SkDebugf(const char * format, ...);
|
|
extern void draw(SkCanvas*);
|
|
|
|
// There are different implementations of create_direct_context() for EGL, Mesa,
|
|
// and a fallback to a null context.
|
|
extern sk_sp<GrDirectContext> create_direct_context(std::ostringstream& driverinfo,
|
|
std::unique_ptr<sk_gpu_test::GLTestContext>*);
|
|
|
|
#endif // fiddle_main_DEFINED
|