HomeSort by relevance Sort by last modified time
    Searched defs:texture (Results 76 - 100 of 289) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
tex-swizzle.c 1 /* Test texture swizzles */
10 static struct pipe_resource *texture = NULL; variable in typeref:struct:pipe_resource
134 texture = graw_util_create_tex2d(&info, SIZE, SIZE,
138 sv_template.format = texture->format;
139 sv_template.texture = texture;
144 sv = info.ctx->create_sampler_view(info.ctx, texture, &sv_template);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/
DXTFlipper.java 32 package com.jme3.texture.plugins;
35 import com.jme3.texture.Image.Format;
PFMLoader.java 33 package com.jme3.texture.plugins;
38 import com.jme3.texture.Image;
39 import com.jme3.texture.Image.Format;
138 throw new IllegalArgumentException("Texture assets must be loaded using a TextureKey");
  /external/jmonkeyengine/engine/src/desktop/com/jme3/texture/plugins/
AWTLoader.java 33 package com.jme3.texture.plugins;
39 import com.jme3.texture.Image;
40 import com.jme3.texture.Image.Format;
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/grid/
ImageTileLoader.java 16 import com.jme3.texture.Texture;
90 final Texture texture = assetManager.loadTexture(new TextureKey(name)); local
91 heightmap = new ImageBasedHeightMap(texture.getImage());
  /external/mesa3d/src/gallium/auxiliary/rbug/
rbug_context.h 90 rbug_texture_t texture; member in struct:rbug_proto_context_draw_rule
157 rbug_texture_t texture,
rbug_texture.h 52 rbug_texture_t texture; member in struct:rbug_proto_texture_info
58 rbug_texture_t texture; member in struct:rbug_proto_texture_write
74 rbug_texture_t texture; member in struct:rbug_proto_texture_read
129 rbug_texture_t texture,
133 rbug_texture_t texture,
147 rbug_texture_t texture,
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_tile_cache.h 51 * Texture tile address as a union for fast compares.
84 struct pipe_resource *texture; /**< if caching a texture */ member in struct:softpipe_tex_tile_cache
  /external/mesa3d/src/gallium/drivers/svga/
svga_resource_texture.c 59 struct svga_texture *texture = svga_texture(st->base.resource); local
82 texture->handle,
90 util_format_get_blocksize(texture->b.b.format) * 8 /
91 (util_format_get_blockwidth(texture->b.b.format)*util_format_get_blockheight(texture->b.b.format)));
108 struct svga_texture *texture = svga_texture(st->base.resource); local
109 struct svga_screen *screen = svga_screen(texture->b.b.screen);
177 * Prevent the texture contents to be discarded on the next band
201 struct pipe_resource *texture,
204 struct svga_winsys_screen *sws = svga_winsys_screen(texture->screen)
    [all...]
svga_state_tss.c 49 pipe_resource_reference( &view->texture, NULL );
84 struct pipe_resource *texture = NULL; local
91 sv->texture->last_level);
92 texture = sv->texture;
98 if (view->texture != texture ||
103 pipe_resource_reference( &view->texture, texture );
109 if (texture)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/egl/common/
egl_g3d.h 93 struct pipe_resource *texture; member in struct:egl_g3d_image
  /external/mesa3d/src/gallium/tests/graw/
quad-tex.c 13 static struct pipe_resource *texture = NULL; variable in typeref:struct:pipe_resource
165 texture = graw_util_create_tex2d(&info, SIZE, SIZE,
168 sv = graw_util_create_simple_sampler_view(&info, texture);
tex-srgb.c 12 static struct pipe_resource *texture; variable in typeref:struct:pipe_resource
159 texture = graw_util_create_tex2d(&info, SIZE, SIZE,
175 sv_temp.texture = texture;
180 linear_sv = info.ctx->create_sampler_view(info.ctx, texture, &sv_temp);
190 sv_temp.texture = texture;
195 srgb_sv = info.ctx->create_sampler_view(info.ctx, texture, &sv_temp);
tex-swizzle.c 1 /* Test texture swizzles */
10 static struct pipe_resource *texture = NULL; variable in typeref:struct:pipe_resource
134 texture = graw_util_create_tex2d(&info, SIZE, SIZE,
138 sv_template.format = texture->format;
139 sv_template.texture = texture;
144 sv = info.ctx->create_sampler_view(info.ctx, texture, &sv_template);
  /external/replicaisland/src/com/replica/replicaisland/
DebugSystem.java 27 private Texture mRedBoxTexture;
28 private Texture mBlueBoxTexture;
29 private Texture mOutlineBoxTexture;
30 private Texture mRedCircleTexture;
31 private Texture mBlueCircleTexture;
32 private Texture mOutlineCircleTexture;
70 Texture texture = getTexture(shapeType, colorType); local
71 bitmap.resize((int)texture.width, (int)texture.height)
    [all...]
MotionBlurComponent.java 32 public Texture texture; field in class:MotionBlurComponent.BlurRecord
50 mHistory[x].texture = null;
70 Texture currentTexture = drawable.getTexture();
72 mHistory[mCurrentStep].texture = currentTexture;
95 if (record.texture != null) {
97 stepImage.setTexture(record.texture);
  /external/skia/tests/
ClipCacheTest.cpp 28 // let Skia know we will be using this texture as a render target
34 // We are initializing the texture with zeros here
35 GrTexture* texture = context->createUncachedTexture(desc, textureData, 0); local
36 if (!texture) {
40 return texture;
56 GrTexture* texture = context->createUncachedTexture(desc, NULL, 0); local
57 if (!texture) {
61 GrAutoUnref au(texture);
93 clipData.getConservativeBounds(texture,
SurfaceTest.cpp 153 // Bug was caused by onCopyOnWrite releasing the old surface texture
154 // back to the scratch texture pool even though the texture is used
162 // Trigger copy on write, new backing is a scratch texture
172 // be recycling a texture that is held by an existing image.
189 GrTexture* texture = image->getTexture(); local
191 REPORTER_ASSERT(reporter, NULL != texture);
192 REPORTER_ASSERT(reporter, 0 != texture->getTextureHandle());
194 REPORTER_ASSERT(reporter, NULL == texture);
197 REPORTER_ASSERT(reporter, image->getTexture() == texture);
    [all...]
  /frameworks/base/libs/hwui/
TextureCache.cpp 37 mCache(LruCache<SkBitmap*, Texture*>::kUnlimitedCapacity),
42 INIT_LOGD(" Setting texture cache size to %sMB", property);
45 INIT_LOGD(" Using default texture cache size of %.2fMB", DEFAULT_TEXTURE_CACHE_SIZE);
50 INIT_LOGD(" Setting texture cache flush rate to %.2f%%", flushRate * 100.0f);
53 INIT_LOGD(" Using default texture cache flush rate of %.2f%%",
61 mCache(LruCache<SkBitmap*, Texture*>::kUnlimitedCapacity),
74 INIT_LOGD(" Maximum texture dimension is %d pixels", mMaxTextureSize);
106 void TextureCache::operator()(SkBitmap*& bitmap, Texture*& texture) {
108 if (texture) {
125 Texture* texture = mCache.get(bitmap); local
165 Texture* texture = new Texture(); local
    [all...]
  /frameworks/base/services/jni/
com_android_server_AssetAtlasService.cpp 102 if (texture) glDeleteTextures(1, &texture); \
114 // using the GPU to swizzle the texture content
158 GLuint texture = 0; local
184 // The EGL image is later bound to a 2D texture
194 glGenTextures(1, &texture);
195 glBindTexture(GL_TEXTURE_2D, texture);
198 ALOGW("Could not create/bind texture");
207 ALOGW("Could not upload to texture");
211 // The fence is used to wait for the texture upload to finis
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
AdvancedBlendActivity.java 63 Bitmap texture = BitmapFactory.decodeResource(c.getResources(), R.drawable.sunset1); local
64 mTexWidth = texture.getWidth();
65 mTexHeight = texture.getHeight();
69 mScaledShader = new BitmapShader(texture, Shader.TileMode.MIRROR,
75 mScaled2Shader = new BitmapShader(texture, Shader.TileMode.MIRROR,
MoreShadersActivity.java 65 Bitmap texture = BitmapFactory.decodeResource(c.getResources(), R.drawable.sunset1); local
66 mTexWidth = texture.getWidth();
67 mTexHeight = texture.getHeight();
71 mScaledShader = new BitmapShader(texture, Shader.TileMode.MIRROR,
77 mScaled2Shader = new BitmapShader(texture, Shader.TileMode.MIRROR,
  /frameworks/native/opengl/libagl/
TextureObjectManager.cpp 218 // check if the texture is complete
293 // keep the texture's parameters
315 sp<EGLTextureObject> EGLSurfaceManager::texture(GLuint name) function in class:android::EGLSurfaceManager
  /frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp 14 GLuint texture; variable
129 glGenTextures(1, &texture);
130 glBindTexture(GL_TEXTURE_2D, texture);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
GLES20Canvas.java 153 // Screen size for when we aren't bound to a texture
173 // Handle indices -- texture
253 // texture.
582 public void drawTexture(BasicTexture texture, int x, int y, int width, int height) {
586 copyTextureCoordinates(texture, mTempSourceRect);
588 convertCoordinate(mTempSourceRect, mTempTargetRect, texture);
589 drawTextureRect(texture, mTempSourceRect, mTempTargetRect);
592 private static void copyTextureCoordinates(BasicTexture texture, RectF outRect) {
595 int right = texture.getWidth();
596 int bottom = texture.getHeight()
834 RawTexture texture = getTargetTexture(); local
    [all...]

Completed in 369 milliseconds

1 2 34 5 6 7 8 91011>>