HomeSort by relevance Sort by last modified time
    Searched refs:Pixel (Results 26 - 50 of 72) sorted by null

12 3

  /external/mesa3d/src/mesa/drivers/common/
meta.c 54 #include "main/pixel.h"
572 save->RedScale = ctx->Pixel.RedScale;
573 save->RedBias = ctx->Pixel.RedBias;
574 save->GreenScale = ctx->Pixel.GreenScale;
575 save->GreenBias = ctx->Pixel.GreenBias;
576 save->BlueScale = ctx->Pixel.BlueScale;
577 save->BlueBias = ctx->Pixel.BlueBias;
578 save->AlphaScale = ctx->Pixel.AlphaScale;
579 save->AlphaBias = ctx->Pixel.AlphaBias;
580 save->MapColorFlag = ctx->Pixel.MapColorFlag
    [all...]
  /external/ceres-solver/examples/
pgm_image.h 66 Real Pixel(int x, int y) const;
134 Real PGMImage<Real>::Pixel(int x, int y) const {
denoising.cc 117 // Build a vector with the pixel indices of this patch.
122 double* pixel = solution->MutablePixel(x + x_delta_indices[i], local
124 pixels.push_back(pixel);
166 std::min(255.0, std::max(0.0, solution->Pixel(x, y)));
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
prog_statevars.c 452 /* for simpler per-vertex/pixel fog calcs. POW (for EXP/EXP2 fog)
541 value[0] = ctx->Pixel.RedScale;
542 value[1] = ctx->Pixel.GreenScale;
543 value[2] = ctx->Pixel.BlueScale;
544 value[3] = ctx->Pixel.AlphaScale;
548 value[0] = ctx->Pixel.RedBias;
549 value[1] = ctx->Pixel.GreenBias;
550 value[2] = ctx->Pixel.BlueBias;
551 value[3] = ctx->Pixel.AlphaBias;
    [all...]
  /external/mesa3d/src/mesa/program/
prog_statevars.c 452 /* for simpler per-vertex/pixel fog calcs. POW (for EXP/EXP2 fog)
541 value[0] = ctx->Pixel.RedScale;
542 value[1] = ctx->Pixel.GreenScale;
543 value[2] = ctx->Pixel.BlueScale;
544 value[3] = ctx->Pixel.AlphaScale;
548 value[0] = ctx->Pixel.RedBias;
549 value[1] = ctx->Pixel.GreenBias;
550 value[2] = ctx->Pixel.BlueBias;
551 value[3] = ctx->Pixel.AlphaBias;
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/
SDL_blit_A.c 84 Uint32 Pixel;
91 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, sR, sG, sB);
99 /* Pack RGB into 8bit pixel */
118 /* N->1 blending with pixel alpha */
136 Uint32 Pixel;
144 DISEMBLE_RGBA(src,srcbpp,srcfmt,Pixel,sR,sG,sB,sA);
152 /* Pack RGB into 8bit pixel */
191 Uint32 Pixel;
198 DISEMBLE_RGB(src, srcbpp, srcfmt, Pixel, sR, sG, sB);
199 if ( Pixel != ckey )
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xm_dd.c 129 GLuint pixel = (GLuint) xmesa->clearpixel; local
133 pixel = ((pixel >> 8) & 0x00ff) | ((pixel << 8) & 0xff00);
139 ptr2[i] = pixel;
184 register GLuint pixel = (GLuint) xmesa->clearpixel; local
190 pixel = ((pixel >> 24) & 0x000000ff)
191 | ((pixel >> 8) & 0x0000ff00)
192 | ((pixel << 8) & 0x00ff0000
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
readpix.c 65 if (ctx->Pixel.DepthScale != 1.0 || ctx->Pixel.DepthBias != 0.0)
284 GLuint pixel = map4[i]; local
285 dst4[i] = (pixel & 0xff00ff00)
286 | ((pixel & 0x00ff0000) >> 16)
287 | ((pixel & 0x000000ff) << 16);
604 = ctx->Pixel.DepthScale != 1.0 || ctx->Pixel.DepthBias != 0.0;
605 const GLboolean stencilTransfer = ctx->Pixel.IndexShift
606 || ctx->Pixel.IndexOffset || ctx->Pixel.MapStencilFlag
    [all...]
get.c     [all...]
image.c 80 * Return the byte offset of a specific pixel in an image (1D, 2D or 3D).
82 * Pixel unpacking/packing parameters are observed according to \p packing.
88 * \param format the pixel format (must be validated beforehand)
89 * \param type the pixel data type (must be validated beforehand)
91 * \param row row of pixel in the image (0 for 1D images)
92 * \param column column of pixel in the image
94 * \return offset of pixel.
139 /* components per pixel for color or stencil index: */
142 /* The pixel type and format should have been error checked earlier */
161 /* The pixel type and format should have been error checked earlier *
    [all...]
buffers.c 505 ctx->Pixel.ReadBuffer = buffer;
pack.c 28 * Image and pixel span packing and unpacking.
94 * Unpack a 32x32 pixel polygon stipple from user memory using the
95 * current pixel unpack settings.
121 * Pack polygon stipple into user memory given current pixel packing
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xm_dd.c 129 GLuint pixel = (GLuint) xmesa->clearpixel; local
133 pixel = ((pixel >> 8) & 0x00ff) | ((pixel << 8) & 0xff00);
139 ptr2[i] = pixel;
184 register GLuint pixel = (GLuint) xmesa->clearpixel; local
190 pixel = ((pixel >> 24) & 0x000000ff)
191 | ((pixel >> 8) & 0x0000ff00)
192 | ((pixel << 8) & 0x00ff0000
    [all...]
  /external/mesa3d/src/mesa/main/
readpix.c 65 if (ctx->Pixel.DepthScale != 1.0 || ctx->Pixel.DepthBias != 0.0)
284 GLuint pixel = map4[i]; local
285 dst4[i] = (pixel & 0xff00ff00)
286 | ((pixel & 0x00ff0000) >> 16)
287 | ((pixel & 0x000000ff) << 16);
604 = ctx->Pixel.DepthScale != 1.0 || ctx->Pixel.DepthBias != 0.0;
605 const GLboolean stencilTransfer = ctx->Pixel.IndexShift
606 || ctx->Pixel.IndexOffset || ctx->Pixel.MapStencilFlag
    [all...]
get.c     [all...]
image.c 80 * Return the byte offset of a specific pixel in an image (1D, 2D or 3D).
82 * Pixel unpacking/packing parameters are observed according to \p packing.
88 * \param format the pixel format (must be validated beforehand)
89 * \param type the pixel data type (must be validated beforehand)
91 * \param row row of pixel in the image (0 for 1D images)
92 * \param column column of pixel in the image
94 * \return offset of pixel.
139 /* components per pixel for color or stencil index: */
142 /* The pixel type and format should have been error checked earlier */
161 /* The pixel type and format should have been error checked earlier *
    [all...]
buffers.c 505 ctx->Pixel.ReadBuffer = buffer;
pack.c 28 * Image and pixel span packing and unpacking.
94 * Unpack a 32x32 pixel polygon stipple from user memory using the
95 * current pixel unpack settings.
121 * Pack polygon stipple into user memory given current pixel packing
    [all...]
  /external/chromium_org/content/browser/resources/gpu/
browser_bridge_tests.js 218 description: 'Pixel shader version',
  /external/chromium_org/third_party/mesa/src/docs/OLD/
MESA_packed_depth_stencil.spec 36 packed pixel formats and types which pack both stencil and depth
42 pixel formats? Should we instead provide both:
106 Add to the description of packed pixel formats:
109 Token Name Type Elements Pixel Formats
171 The assignment of elements to fields in the packed pixel is as
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_composite.c 56 pixel_to_float4(Pixel pixel, float *color, enum pipe_format format)
62 packed[0] = pixel;
63 packed[1] = pixel >> 8;
64 packed[2] = pixel >> 16;
65 packed[3] = pixel >> 24;
532 Pixel fg)
542 debug_printf("Color Pixel=(%d, %d, %d, %d), RGBA=(%f, %f, %f, %f)\n",
xorg_exa.c 344 ExaPrepareSolid(PixmapPtr pPixmap, int alu, Pixel planeMask, Pixel fg)
424 int ydir, int alu, Pixel planeMask)
  /external/mesa3d/docs/OLD/
MESA_packed_depth_stencil.spec 36 packed pixel formats and types which pack both stencil and depth
42 pixel formats? Should we instead provide both:
106 Add to the description of packed pixel formats:
109 Token Name Type Elements Pixel Formats
171 The assignment of elements to fields in the packed pixel is as
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_composite.c 56 pixel_to_float4(Pixel pixel, float *color, enum pipe_format format)
62 packed[0] = pixel;
63 packed[1] = pixel >> 8;
64 packed[2] = pixel >> 16;
65 packed[3] = pixel >> 24;
532 Pixel fg)
542 debug_printf("Color Pixel=(%d, %d, %d, %d), RGBA=(%f, %f, %f, %f)\n",
xorg_exa.c 344 ExaPrepareSolid(PixmapPtr pPixmap, int alu, Pixel planeMask, Pixel fg)
424 int ydir, int alu, Pixel planeMask)

Completed in 5147 milliseconds

12 3