Searched defs:framebufferSize (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
H A DClear11.cpp31 static void ApplyVertices(const gl::Extents &framebufferSize, const gl::Rectangle *scissor, const gl::Color<T> &color, float depth, void *buffer) argument
44 left = std::max(left, (scissor->x / float(framebufferSize.width)) * 2.0f - 1.0f);
45 right = std::min(right, ((scissor->x + scissor->width) / float(framebufferSize.width)) * 2.0f - 1.0f);
46 top = std::max(top, ((framebufferSize.height - scissor->y - scissor->height) / float(framebufferSize.height)) * 2.0f - 1.0f);
47 bottom = std::min(bottom, ((framebufferSize.height - scissor->y) / float(framebufferSize.height)) * 2.0f - 1.0f);
168 gl::Extents framebufferSize; local
172 framebufferSize.width = attachment->getWidth();
173 framebufferSize
[all...]

Completed in 120 milliseconds