Lines Matching defs:width
40 void setupSurfaces(int width, int height);
49 void resize(int width, int height) override;
91 unsigned int width = windowRect.right - windowRect.left;
102 swapChainDesc.Width = width;
122 this->setupSurfaces(width, height);
133 fWidth = width;
137 void D3D12WindowContext::setupSurfaces(int width, int height) {
149 SkASSERT(fBuffers[i]->GetDesc().Width == (UINT64)width &&
154 GrBackendTexture backendTexture(width, height, info);
159 GrBackendRenderTarget backendRT(width, height, info);
211 void D3D12WindowContext::resize(int width, int height) {
227 GR_D3D_CALL_ERRCHECK(fSwapChain->ResizeBuffers(0, width, height,
230 this->setupSurfaces(width, height);
232 fWidth = width;