Home
last modified time | relevance | path

Searched refs:GLTestContext (Results 1 – 25 of 27) sorted by relevance

12

/external/skia/tools/gpu/gl/
DGLTestContext.cpp17 static std::unique_ptr<GLFenceSync> MakeIfSupported(const sk_gpu_test::GLTestContext*);
24 GLFenceSync(const sk_gpu_test::GLTestContext*, const char* ext = "");
46 std::unique_ptr<GLFenceSync> GLFenceSync::MakeIfSupported(const sk_gpu_test::GLTestContext* ctx) { in MakeIfSupported()
68 GLFenceSync::GLFenceSync(const sk_gpu_test::GLTestContext* ctx, const char* ext) { in GLFenceSync()
91 static std::unique_ptr<GLGpuTimer> MakeIfSupported(const sk_gpu_test::GLTestContext*);
98 GLGpuTimer(bool disjointSupport, const sk_gpu_test::GLTestContext*, const char* ext = "");
130 std::unique_ptr<GLGpuTimer> GLGpuTimer::MakeIfSupported(const sk_gpu_test::GLTestContext* ctx) { in MakeIfSupported()
147 GLGpuTimer::GLGpuTimer(bool disjointSupport, const sk_gpu_test::GLTestContext* ctx, const char* ext) in GLGpuTimer()
225 GLTestContext::GLTestContext() : TestContext() {} in GLTestContext() function in sk_gpu_test::GLTestContext
227 GLTestContext::~GLTestContext() { in ~GLTestContext()
[all …]
DGLTestContext.h19 class GLTestContext : public TestContext {
21 ~GLTestContext() override;
60 virtual std::unique_ptr<GLTestContext> makeNew() const { return nullptr; } in makeNew()
79 GLTestContext();
104 GLTestContext* CreatePlatformGLTestContext(GrGLStandard forcedGpuAPI,
105 GLTestContext *shareContext = nullptr);
/external/skia/tools/gpu/gl/null/
DNullGLTestContext.cpp18 class NullGLContext : public sk_gpu_test::GLTestContext {
32 GLTestContext* CreateNullGLTestContext(bool enableNVPR, GLTestContext* shareContext) { in CreateNullGLTestContext()
36 GLTestContext* ctx = new NullGLContext(enableNVPR); in CreateNullGLTestContext()
DNullGLTestContext.h14 GLTestContext* CreateNullGLTestContext(bool enableNVPR, GLTestContext* shareContext);
/external/skia/tests/
DEGLImageTest.cpp21 using sk_gpu_test::GLTestContext;
23 static void cleanup(GLTestContext* glctx0, GrGLuint texID0, GLTestContext* glctx1, GrContext* grctx… in cleanup()
48 sk_gpu_test::GLTestContext* glCtx0 = ctxInfo.glContext(); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
61 std::unique_ptr<GLTestContext> glCtx1 = glCtx0->makeNew(); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
DGpuSampleLocationsTest.cpp183 std::unique_ptr<sk_gpu_test::GLTestContext> fTestContext;
DRectangleTextureTest.cpp91 sk_gpu_test::GLTestContext* glContext = ctxInfo.glContext(); in DEF_GPUTEST_FOR_GL_RENDERING_CONTEXTS()
DTest.h21 class GLTestContext; variable
/external/skia/tools/gpu/gl/angle/
DGLTestContext_angle.cpp76 class ANGLEGLContext : public sk_gpu_test::GLTestContext {
84 std::unique_ptr<sk_gpu_test::GLTestContext> makeNew() const override;
310 std::unique_ptr<sk_gpu_test::GLTestContext> ANGLEGLContext::makeNew() const { in makeNew()
313 std::unique_ptr<sk_gpu_test::GLTestContext> ctx = in makeNew()
395 std::unique_ptr<GLTestContext> MakeANGLETestContext(ANGLEBackend type, ANGLEContextVersion version, in MakeANGLETestContext()
396 GLTestContext* shareContext, void* display){ in MakeANGLETestContext()
398 std::unique_ptr<GLTestContext> ctx(new ANGLEGLContext(type, version, in MakeANGLETestContext()
DGLTestContext_angle.h33 std::unique_ptr<GLTestContext> MakeANGLETestContext(ANGLEBackend, ANGLEContextVersion,
34 GLTestContext* shareContext = nullptr,
/external/skia/tools/gpu/gl/iOS/
DCreatePlatformGLTestContext_iOS.mm9 #include "gl/GLTestContext.h"
17 class IOSGLTestContext : public sk_gpu_test::GLTestContext {
98 GLTestContext *CreatePlatformGLTestContext(GrGLStandard forcedGpuAPI,
99 GLTestContext *shareContext) {
/external/skia/tools/gpu/gl/mac/
DCreatePlatformGLTestContext_mac.cpp17 class MacGLTestContext : public sk_gpu_test::GLTestContext {
112 GLTestContext* CreatePlatformGLTestContext(GrGLStandard forcedGpuAPI, in CreatePlatformGLTestContext()
113 GLTestContext* shareContext) { in CreatePlatformGLTestContext()
/external/skia/tools/gpu/gl/none/
DCreatePlatformGLTestContext_none.cpp12 GLTestContext* CreatePlatformGLTestContext(GrGLStandard forcedGpuAPI, in CreatePlatformGLTestContext()
13 GLTestContext *shareContext) { in CreatePlatformGLTestContext()
/external/skia/tools/gpu/gl/mesa/
DGLTestContext_mesa.h14 GLTestContext* CreateMesaGLTestContext(GLTestContext* shareContext);
DGLTestContext_mesa.cpp35 class MesaGLContext : public sk_gpu_test::GLTestContext {
147 GLTestContext *CreateMesaGLTestContext(GLTestContext* shareContext) { in CreateMesaGLTestContext()
/external/skia/tools/gpu/gl/egl/
DCreatePlatformGLTestContext_egl.cpp42 class EGLGLTestContext : public sk_gpu_test::GLTestContext {
50 std::unique_ptr<sk_gpu_test::GLTestContext> makeNew() const override;
269 std::unique_ptr<sk_gpu_test::GLTestContext> EGLGLTestContext::makeNew() const { in makeNew()
270 std::unique_ptr<sk_gpu_test::GLTestContext> ctx(new EGLGLTestContext(this->gl()->fStandard, in makeNew()
348 GLTestContext *CreatePlatformGLTestContext(GrGLStandard forcedGpuAPI, in CreatePlatformGLTestContext()
349 GLTestContext *shareContext) { in CreatePlatformGLTestContext()
/external/skia/tools/gpu/gl/debug/
DDebugGLTestContext.h14 GLTestContext* CreateDebugGLTestContext(GLTestContext* shareContext = nullptr);
DDebugGLTestContext.cpp1195 class DebugGLContext : public sk_gpu_test::GLTestContext {
1211 GLTestContext* CreateDebugGLTestContext(GLTestContext* shareContext) { in CreateDebugGLTestContext()
1215 GLTestContext* ctx = new DebugGLContext(); in CreateDebugGLTestContext()
/external/skia/tools/gpu/gl/command_buffer/
DGLTestContext_command_buffer.h15 class CommandBufferGLTestContext : public GLTestContext {
19 static CommandBufferGLTestContext *Create(GLTestContext* shareContext) { in Create()
/external/skia/tools/gpu/
DGrContextFactory.h171 std::unique_ptr<GLTestContext> fSentinelGLContext;
187 GLTestContext* glContext() const { in glContext()
189 return static_cast<GLTestContext*>(fTestContext); in glContext()
DGrContextFactory.cpp141 GLTestContext* glShareContext = masterContext in getContextInfoInternal()
142 ? static_cast<GLTestContext*>(masterContext->fTestContext) : nullptr; in getContextInfoInternal()
143 GLTestContext* glCtx; in getContextInfoInternal()
/external/skia/tools/gpu/gl/win/
DCreatePlatformGLTestContext_win.cpp19 class WinGLTestContext : public sk_gpu_test::GLTestContext {
195 GLTestContext* CreatePlatformGLTestContext(GrGLStandard forcedGpuAPI, in CreatePlatformGLTestContext()
196 GLTestContext *shareContext) { in CreatePlatformGLTestContext()
/external/skia/tools/gpu/gl/glx/
DCreatePlatformGLTestContext_glx.cpp54 class GLXGLTestContext : public sk_gpu_test::GLTestContext {
348 GLTestContext *CreatePlatformGLTestContext(GrGLStandard forcedGpuAPI, in CreatePlatformGLTestContext()
349 GLTestContext *shareContext) { in CreatePlatformGLTestContext()
/external/skia/tools/skiaserve/
DRequest.cpp76 GLTestContext* gl = factory->getContextInfo(GrContextFactory::kGL_ContextType, in getCanvas()
/external/skia/dm/
DDM.cpp94 using sk_gpu_test::GLTestContext;

12