• Home
  • Raw
  • Download

Lines Matching refs:rtProxy

45                                GrRenderTargetProxy* rtProxy,  in check_rendertarget()  argument
50 REPORTER_ASSERT(reporter, rtProxy->maxWindowRectangles(caps) == expectedMaxWindowRects); in check_rendertarget()
51 REPORTER_ASSERT(reporter, rtProxy->numStencilSamples() == numSamples); in check_rendertarget()
53 GrSurfaceProxy::UniqueID idBefore = rtProxy->uniqueID(); in check_rendertarget()
54 REPORTER_ASSERT(reporter, rtProxy->instantiate(provider)); in check_rendertarget()
55 GrRenderTarget* rt = rtProxy->priv().peekRenderTarget(); in check_rendertarget()
57 REPORTER_ASSERT(reporter, rtProxy->uniqueID() == idBefore); in check_rendertarget()
60 REPORTER_ASSERT(reporter, rtProxy->uniqueID().asUInt() == rt->uniqueID().asUInt()); in check_rendertarget()
63 REPORTER_ASSERT(reporter, rtProxy->uniqueID().asUInt() != rt->uniqueID().asUInt()); in check_rendertarget()
66 REPORTER_ASSERT(reporter, rt->origin() == rtProxy->origin()); in check_rendertarget()
68 REPORTER_ASSERT(reporter, rt->width() == rtProxy->width()); in check_rendertarget()
69 REPORTER_ASSERT(reporter, rt->height() == rtProxy->height()); in check_rendertarget()
71 REPORTER_ASSERT(reporter, rt->width() >= rtProxy->width()); in check_rendertarget()
72 REPORTER_ASSERT(reporter, rt->height() >= rtProxy->height()); in check_rendertarget()
74 REPORTER_ASSERT(reporter, rt->config() == rtProxy->config()); in check_rendertarget()
76 REPORTER_ASSERT(reporter, rt->fsaaType() == rtProxy->fsaaType()); in check_rendertarget()
77 REPORTER_ASSERT(reporter, rt->numColorSamples() == rtProxy->numColorSamples()); in check_rendertarget()
78 REPORTER_ASSERT(reporter, rt->numStencilSamples() == rtProxy->numStencilSamples()); in check_rendertarget()
79 REPORTER_ASSERT(reporter, rt->renderTargetPriv().flags() == rtProxy->testingOnly_getFlags()); in check_rendertarget()