/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/ |
Query11.cpp | 110 UINT64 numPixels = 0; 111 HRESULT result = context->GetData(mQuery, &numPixels, sizeof(numPixels), 0); 120 mResult = (numPixels > 0) ? GL_TRUE : GL_FALSE;
|
PixelTransfer11.cpp | 216 UINT numPixels = (destArea.width * destArea.height * destArea.depth); 217 deviceContext->Draw(numPixels, 0);
|
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/ |
s_linetemp.h | 76 GLint numPixels; 218 numPixels = MAX2(dx, dy); 229 span.redStep = (ChanToFixed(vert1->color[0]) - span.red ) / numPixels; 230 span.greenStep = (ChanToFixed(vert1->color[1]) - span.green) / numPixels; 231 span.blueStep = (ChanToFixed(vert1->color[2]) - span.blue ) / numPixels; 232 span.alphaStep = (ChanToFixed(vert1->color[3]) - span.alpha) / numPixels; 250 - vert0->attrib[FRAG_ATTRIB_WPOS][2]) / numPixels; 256 - vert0->attrib[FRAG_ATTRIB_WPOS][2]) / numPixels); 262 const GLfloat invLen = 1.0F / numPixels; 290 span.end = numPixels; [all...] |
/external/mesa3d/src/mesa/swrast/ |
s_linetemp.h | 76 GLint numPixels; 218 numPixels = MAX2(dx, dy); 229 span.redStep = (ChanToFixed(vert1->color[0]) - span.red ) / numPixels; 230 span.greenStep = (ChanToFixed(vert1->color[1]) - span.green) / numPixels; 231 span.blueStep = (ChanToFixed(vert1->color[2]) - span.blue ) / numPixels; 232 span.alphaStep = (ChanToFixed(vert1->color[3]) - span.alpha) / numPixels; 250 - vert0->attrib[FRAG_ATTRIB_WPOS][2]) / numPixels; 256 - vert0->attrib[FRAG_ATTRIB_WPOS][2]) / numPixels); 262 const GLfloat invLen = 1.0F / numPixels; 290 span.end = numPixels; [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
CornerPathEffectTest.java | 78 int numPixels = 0; 83 numPixels += 1; 92 int cornerPixels = numPixels - straightLines;
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/ |
Query9.cpp | 111 DWORD numPixels = 0; 113 HRESULT hres = mQuery->GetData(&numPixels, sizeof(DWORD), D3DGETDATA_FLUSH); 122 mResult = (numPixels > 0) ? GL_TRUE : GL_FALSE;
|
/development/samples/devbytes/graphics/ImagePixelization/src/com/example/android/imagepixelization/ |
ImagePixelization.java | 169 int pixel = 0, red = 0, green = 0, blue = 0, numPixels = 0; 181 numPixels = red = green = blue = 0; 192 numPixels ++; 196 pixel = Color.rgb(red / numPixels, green / numPixels, blue / numPixels);
|
/cts/apps/CtsVerifier/lib/colorchecker/ |
testingimage.cpp | 142 int numPixels = 0; 153 ++numPixels; 157 meanColor = meanColor / numPixels;
|
colorcheckertest.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/ |
BMPImageReader.cpp | 693 BMPImageReader::ProcessingResult BMPImageReader::processNonRLEData(bool inRLE, int numPixels) 699 numPixels = m_parent->size().width(); 702 const int endX = m_coord.x() + numPixels; 710 const size_t unpaddedNumBytes = (m_infoHeader.biBitCount < 16) ? ((numPixels + pixelsPerByte - 1) / pixelsPerByte) : (numPixels * bytesPerPixel); [all...] |
BMPImageReader.h | 166 // process |numPixels| pixels on the current row. 168 // |numPixels| is ignored. Expects |m_coord| to point at the 177 ProcessingResult processNonRLEData(bool inRLE, int numPixels);
|
/external/deqp/modules/glshared/ |
glsShaderPerformanceMeasurer.cpp | 305 deInt64 numPixels = (deInt64)m_viewportWidth * (deInt64)m_viewportHeight * numQuadGrids; 307 double mfragPerSecond = (double)numPixels / (double)totalTime; 325 deInt64 numPixels = (deInt64)m_viewportWidth * (deInt64)m_viewportHeight * numQuadGrids; 327 double mfragPerSecond = (double)numPixels / (double)totalTime; 334 << TestLog::Float("FragmentsPerVertices", "Vertex-fragment ratio", "Fragments/Vertices", QP_KEY_TAG_NONE, (float)numPixels / (float)numVertices)
|
/external/deqp/modules/gles2/functional/ |
es2fColorClearTest.cpp | 108 const int numPixels = targetWidth * targetHeight; 111 vector<deUint8> pixelKnownChannelMask (numPixels, 0);
|
es2fMultisampleTests.cpp | [all...] |
/external/deqp/modules/gles3/functional/ |
es3fColorClearTest.cpp | 108 const int numPixels = targetWidth * targetHeight; 111 vector<deUint8> pixelKnownChannelMask (numPixels, 0);
|
es3fMultisampleTests.cpp | [all...] |
/external/deqp/modules/gles2/performance/ |
es2pTextureUploadTests.cpp | 270 deInt64 numPixels = (deInt64)m_texSize * (deInt64)m_texSize * numTexturesDrawn; 274 double avgMTexelsPerSeconds = (double)numPixels / (double)totalTime; 275 double avgTexelDrawDurationNs = (double)totalTime * 1000.0 / (double)numPixels;
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebSettingsImpl.cpp | 520 void WebSettingsImpl::setMinimumAccelerated2dCanvasSize(int numPixels) 522 m_settings->setMinimumAccelerated2dCanvasSize(numPixels);
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/inspector/ |
jstemplate_compiled.js | 64 * @param {Number} numPixels Number of pixels, may be floating point. 67 function px(numPixels) { 68 return round(numPixels) + "px";
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FilterEffect.cpp | 241 int numPixels = pixelArrayLength / 4; 244 while (--numPixels >= 0) {
|
/external/deqp/modules/gles31/functional/ |
es31fMultisampleTests.cpp | 583 deInt32 numPixels = (deInt32)renderedImg.getWidth()*(deInt32)renderedImg.getHeight(); 632 log << TestLog::Message << "Average red color component: " << de::floatToString((float)sumRed / 255.0f / (float)numPixels, 2) << TestLog::EndMessage; 652 if (m_currentIteration == m_numIterations-1 && sumRed != 0xff*numPixels) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
teximage.c | 1054 const GLint numPixels = width * height * depth; 1055 GLubyte *data = (GLubyte *) MALLOC(numPixels * components * sizeof(GLubyte)); [all...] |
/external/mesa3d/src/mesa/main/ |
teximage.c | 1054 const GLint numPixels = width * height * depth; 1055 GLubyte *data = (GLubyte *) MALLOC(numPixels * components * sizeof(GLubyte)); [all...] |