HomeSort by relevance Sort by last modified time
    Searched refs:packing (Results 1 - 5 of 5) sorted by null

  /external/webkit/Source/WebKit/android/plugins/
ANPBitmapInterface.cpp 31 static bool anp_getPixelPacking(ANPBitmapFormat fmt, ANPPixelPacking* packing) {
34 if (packing) {
35 packing->AShift = SK_A32_SHIFT;
36 packing->ABits = SK_A32_BITS;
37 packing->RShift = SK_R32_SHIFT;
38 packing->RBits = SK_R32_BITS;
39 packing->GShift = SK_G32_SHIFT;
40 packing->GBits = SK_G32_BITS;
41 packing->BShift = SK_B32_SHIFT;
42 packing->BBits = SK_B32_BITS
    [all...]
android_npapi.h 258 /** Returns true if the specified bitmap format is supported, and if packing
259 is non-null, sets it to the packing info for that format.
261 bool (*getPixelPacking)(ANPBitmapFormat, ANPPixelPacking* packing);
364 /** ANPColor is always defined to have the same packing on all platforms, and
368 and their packing may vary depending on the platform, hence the need for
    [all...]
  /development/samples/BrowserPlugin/jni/background/
BackgroundPlugin.cpp 329 ANPPixelPacking packing; local
331 if (gBitmapI.getPixelPacking(gRecs[i].fFormat, &packing)) {
333 "pixel format [%d] %s has packing ARGB [%d %d] [%d %d] [%d %d] [%d %d]\n",
335 packing.AShift, packing.ABits,
336 packing.RShift, packing.RBits,
337 packing.GShift, packing.GBits,
338 packing.BShift, packing.BBits)
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Program.cpp 1000 int Program::packVaryings(const Varying *packing[][4])
1021 if (packing[r + y][x])
1037 packing[r + y][x] = &*varying;
1055 if (packing[r + y][x])
1071 packing[r + y][x] = &*varying;
1088 space[x] += packing[y][x] ? 0 : 1;
1106 if (!packing[r][column])
1112 packing[y][column] = &*varying;
1139 if (packing[r][0] || packing[r][1] || packing[r][2] || packing[r][3]
1155 const Varying *packing[MAX_VARYING_VECTORS_SM3][4] = {NULL}; local
    [all...]
Program.h 139 int packVaryings(const Varying *packing[][4]);

Completed in 268 milliseconds