Home
last modified time | relevance | path

Searched refs:Bitmap (Results 1 – 25 of 182) sorted by relevance

12345678

/third_party/mesa3d/src/gallium/frontends/hgl/
Dbitmap_wrapper.h35 typedef void Bitmap; typedef
42 Bitmap* create_bitmap(int32 width, int32 height, color_space colorSpace);
43 void delete_bitmap(Bitmap* bitmap);
45 void copy_bitmap_bits(const Bitmap* bitmap, void* data, int32 length);
46 void import_bitmap_bits(const Bitmap* bitmap, void* data, int32 length,
49 void get_bitmap_size(const Bitmap* bitmap, int32* width, int32* height);
50 color_space get_bitmap_color_space(const Bitmap* bitmap);
51 int32 get_bitmap_bytes_per_row(const Bitmap* bitmap);
52 int32 get_bitmap_bits_length(const Bitmap* bitmap);
54 void dump_bitmap(const Bitmap* bitmap);
Dbitmap_wrapper.cpp43 Bitmap*
48 return (Bitmap*)bb; in create_bitmap()
54 get_bitmap_size(const Bitmap* bitmap, int32* width, int32* height) in get_bitmap_size()
67 get_bitmap_color_space(const Bitmap* bitmap) in get_bitmap_color_space()
77 copy_bitmap_bits(const Bitmap* bitmap, void* data, int32 length) in copy_bitmap_bits()
88 import_bitmap_bits(const Bitmap* bitmap, void* data, int32 length, in import_bitmap_bits()
100 delete_bitmap(Bitmap* bitmap) in delete_bitmap()
108 get_bitmap_bytes_per_row(const Bitmap* bitmap) in get_bitmap_bytes_per_row()
118 get_bitmap_bits_length(const Bitmap* bitmap) in get_bitmap_bits_length()
128 dump_bitmap(const Bitmap* bitmap) in dump_bitmap()
/third_party/skia/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DCorrectnessActivity.java4 import android.graphics.Bitmap;
82 private void saveAsPng(int asset, Bitmap bitmap) { in saveAsPng()
88 bitmap.compress(Bitmap.CompressFormat.PNG, /*quality ignored for PNG*/100, out); in saveAsPng()
126 Bitmap out = grabScreenshot(); in runCorrectness()
132 private Bitmap grabScreenshot() { in grabScreenshot()
133 Bitmap outBitmap = Bitmap.createBitmap(OUTPUT_DIMS, OUTPUT_DIMS, in grabScreenshot()
134 Bitmap.Config.ARGB_8888); in grabScreenshot()
/third_party/skia/platform_tools/android/apps/AndroidKit/src/main/java/org/skia/androidkit/
DSurface.java10 import android.graphics.Bitmap;
25 public Surface(Bitmap bitmap) { in Surface()
100 private static long CreateBitmapInstance(Bitmap bitmap) { in CreateBitmapInstance()
107 private static native long nCreateBitmap(Bitmap bitmap); in nCreateBitmap()
/third_party/flutter/flutter/examples/platform_channel/android/app/src/androidTest/java/com/example/platformchannel/
DExampleInstrumentedTest.java3 import android.graphics.Bitmap;
42 Bitmap bitmap = null; in testBitmap()
62 private Bitmap bitmap;
77 Bitmap waitForBitmap() throws InterruptedException { in waitForBitmap()
/third_party/flutter/flutter/examples/platform_channel_swift/android/app/src/androidTest/java/com/example/platformchannel/
DExampleInstrumentedTest.java3 import android.graphics.Bitmap;
42 Bitmap bitmap = null; in testBitmap()
62 private Bitmap bitmap;
77 Bitmap waitForBitmap() throws InterruptedException { in waitForBitmap()
/third_party/skia/platform_tools/android/apps/androidkitdemo/src/main/java/org/skia/androidkitdemo1/
DMainActivity.java11 import android.graphics.Bitmap;
47 Bitmap.Config conf = Bitmap.Config.ARGB_8888; in onCreate()
48 Bitmap bmp = Bitmap.createBitmap(400, 400, conf); in onCreate()
/third_party/flutter/skia/platform_tools/android/apps/arcore/src/main/java/org/skia/arcore/
DJniInterface.java6 import android.graphics.Bitmap;
69 public static Bitmap loadImage(String imageName) { in loadImage()
79 public static void loadTexture(int target, Bitmap bitmap) { in loadTexture()
/third_party/flutter/skia/site/user/api/
DSkBitmap_Reference.md105 …ence#Bitmap'>Bitmap</a> describes a two-dimensional raster <a href='undocumented#Pixel'>pixel</a> …
108 <a href='SkBitmap_Reference#Bitmap'>Bitmap</a> <a href='SkPoint_Reference#Point'>points</a> to <a h…
111 …p_Reference#Bitmap'>Bitmap</a> can be drawn using <a href='SkCanvas_Reference#Canvas'>Canvas</a>. …
112 draw member functions. <a href='SkBitmap_Reference#Bitmap'>Bitmap</a> flexibility as a <a href='und…
118 …a href='#Image_Info'>Image_Info</a>: the <a href='SkBitmap_Reference#Bitmap'>Bitmap</a> height, wi…
120 …nce#SkBitmap'>SkBitmap</a> const affects <a href='SkBitmap_Reference#Bitmap'>Bitmap</a> configurat…
122 …Bitmap_Reference#Bitmap'>Bitmap</a> is not thread safe. Each thread must have its own copy of <a h…
127 <a href='SkBitmap_Reference#Bitmap'>Bitmap</a> pixels may be contiguous, or may have a gap at the e…
131 is useful to position one or more <a href='SkBitmap_Reference#Bitmap'>Bitmaps</a> within a shared <…
140 …ef='SkBitmap_Reference#SkBitmap'>SkBitmap</a>* <a href='SkBitmap_Reference#Bitmap'>bitmap</a>) = 0;
[all …]
/third_party/boost/libs/math/dot_net_example/distribution_explorer/Properties/
DResources.Designer.cs63 internal static System.Drawing.Bitmap ToolkitLogo {
66 return ((System.Drawing.Bitmap)(obj));
/third_party/python/Doc/library/
Dimghdr.rst36 | ``'pbm'`` | Portable Bitmap Files |
46 | ``'xbm'`` | X Bitmap Files |
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/engine/
DFlutterJNI.java9 import android.graphics.Bitmap;
794 public Bitmap getBitmap() { in getBitmap()
801 private native Bitmap nativeGetBitmap(long nativePlatformViewId); in nativeGetBitmap()
/third_party/skia/third_party/externals/opengl-registry/extensions/HP/
DHP_texture_lighting.txt119 Bitmap |
120 Bitmap -----> Rasterization -->+
/third_party/openGLES/extensions/HP/
DHP_texture_lighting.txt119 Bitmap |
120 Bitmap -----> Rasterization -->+
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/engine/renderer/
DFlutterRenderer.java8 import android.graphics.Bitmap;
230 public Bitmap getBitmap() { in getBitmap()
/third_party/mesa3d/src/mesa/drivers/dri/i915/
Dintel_pixel.c127 functions->Bitmap = intelBitmap; in intelInitPixelFuncs()
/third_party/mesa3d/src/mesa/drivers/dri/i965/
Dbrw_pixel.c129 functions->Bitmap = brw_bitmap; in brw_init_pixel_functions()
/third_party/e2fsprogs/doc/
Dlibext2fs.texinfo131 * Bitmap Functions::
721 @node Directory functions, Bitmap Functions, Inode Functions, EXT2FS Library Functions
905 @node Bitmap Functions, EXT2 data abstractions, Directory functions, EXT2FS Library Functions
907 @section Bitmap Functions
913 * Bitmap Operations::
922 @node Reading and Writing Bitmaps, Allocating Bitmaps, Bitmap Functions, Bitmap Functions
946 @node Allocating Bitmaps, Free bitmaps, Reading and Writing Bitmaps, Bitmap Functions
961 @node Free bitmaps, Bitmap Operations, Allocating Bitmaps, Bitmap Functions
978 @node Bitmap Operations, Comparing bitmaps, Free bitmaps, Bitmap Functions
980 @subsection Bitmap Operations
[all …]
/third_party/skia/third_party/externals/opengl-registry/extensions/MESA/
DMESA_window_pos.txt37 rely on a subtle side-effect of the Bitmap command in order to circumvent
47 CopyPixels or Bitmap.
/third_party/openGLES/extensions/MESA/
DMESA_window_pos.txt37 rely on a subtle side-effect of the Bitmap command in order to circumvent
47 CopyPixels or Bitmap.
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/
DARB_window_pos.txt43 on a subtle side-effect of the Bitmap command in order to avoid frustum
54 Bitmap. Many matrix operations can be avoided when mixing 2D and 3D
85 of the depth range. That's where one would usually want Bitmap,
129 rasterization (Bitmap, DrawPixels) time. Instead, this extension
/third_party/openGLES/extensions/ARB/
DARB_window_pos.txt53 on a subtle side-effect of the Bitmap command in order to avoid frustum
64 Bitmap. Many matrix operations can be avoided when mixing 2D and 3D
95 of the depth range. That's where one would usually want Bitmap,
139 rasterization (Bitmap, DrawPixels) time. Instead, this extension
/third_party/flutter/skia/resources/lua/
Dslides_content2.lua54 - Bitmap scaling : bilerp, mipmaps, fancy
/third_party/openGLES/extensions/SUNX/
DSUNX_constant_data.txt36 interpreted and therefore affects DrawPixels, Bitmap,
98 In immediate mode, for DrawPixels()/Bitmap(), specifying constant data
/third_party/skia/third_party/externals/opengl-registry/extensions/SUNX/
DSUNX_constant_data.txt36 interpreted and therefore affects DrawPixels, Bitmap,
98 In immediate mode, for DrawPixels()/Bitmap(), specifying constant data

12345678