Home | History | Annotate | Download | only in renderstate

Lines Matching refs:width

43     uint32_t width = computeIdealDimension(viewportWidth);
45 ATRACE_FORMAT("Allocate %ux%u HW Layer", width, height);
47 texture.resize(width, height, GL_RGBA);
54 const float texX = 1.0f / static_cast<float>(texture.width());
76 const float texX = 1.0f / float(texture.width());
106 ATRACE_FORMAT("Destroy %ux%u HW Layer", texture.width(), texture.height());
126 int deltaInt = int(lhs.width) - int(rhs.width);
141 const uint32_t width, const uint32_t height) {
144 Entry entry(width, height);
152 layer->viewportWidth = width;
156 layer = new OffscreenBuffer(renderState, Caches::getInstance(), width, height);
163 const uint32_t width, const uint32_t height) {
165 if (layer->texture.width() == OffscreenBuffer::computeIdealDimension(width)
168 layer->viewportWidth = width;
176 return get(renderState, width, height);
181 ALOGD(" Layer size %dx%d", entry.width, entry.height);