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

  /external/webkit/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 245 /** Returns true if the specified bitmap format is supported, and if packing
246 is non-null, sets it to the packing info for that format.
248 bool (*getPixelPacking)(ANPBitmapFormat, ANPPixelPacking* packing);
351 /** ANPColor is always defined to have the same packing on all platforms, and
355 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...]

Completed in 402 milliseconds