HomeSort by relevance Sort by last modified time
    Searched defs:tex (Results 1 - 25 of 254) sorted by null

1 2 3 4 5 6 7 8 91011

  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
TextureBase.java 34 TextureBase tex = objects[0]; local
35 tex.load();
  /external/chromium_org/gpu/command_buffer/tests/
gl_shared_resources_unittests.cc 45 GLuint tex = 0; local
46 glGenTextures(1, &tex);
48 glBindTexture(GL_TEXTURE_2D, tex);
49 glDeleteTextures(1, &tex);
51 glBindTexture(GL_TEXTURE_2D,tex);
gl_unittests.cc 38 GLuint tex = 0; local
39 glGenTextures(1, &tex);
42 glBindTexture(GL_TEXTURE_2D, tex);
54 tex, 0);
62 glDeleteTextures(1, &tex);
  /external/chromium_org/third_party/skia/src/utils/
SkMeshUtils.cpp 20 bool SkMeshIndices::init(SkPoint tex[], uint16_t indices[],
39 if (tex) {
40 fTex = tex;
71 SkPoint* tex = fTex; local
76 tex->set(x*dx, y*dy);
77 tex += 1;
99 rows * cols, verts, idx.tex(), colors, NULL,
  /external/skia/src/utils/
SkMeshUtils.cpp 20 bool SkMeshIndices::init(SkPoint tex[], uint16_t indices[],
39 if (tex) {
40 fTex = tex;
71 SkPoint* tex = fTex; local
76 tex->set(x*dx, y*dy);
77 tex += 1;
99 rows * cols, verts, idx.tex(), colors, NULL,
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_sampler_view.c 61 struct svga_texture *tex = svga_texture(pt); local
93 if (tex->cached_view &&
94 tex->cached_view->min_lod == min_lod &&
95 tex->cached_view->max_lod == max_lod) {
96 svga_sampler_view_reference(&sv, tex->cached_view);
128 sv->handle = tex->handle;
143 sv->age = tex->age;
144 sv->handle = svga_texture_view_surface(svga, tex, flags, format,
153 sv->handle = tex->handle;
160 svga_sampler_view_reference(&tex->cached_view, sv)
172 struct svga_texture *tex = svga_texture(v->texture); local
207 struct svga_texture *tex = svga_texture(v->texture); local
    [all...]
svga_resource_texture.h 103 struct svga_texture *tex = (struct svga_texture *)resource; local
104 assert(tex == NULL || tex->b.vtbl == &svga_texture_vtbl);
105 return tex;
svga_state_constants.c 283 if (key->tex[i].unnormalized) {
284 struct pipe_resource *tex = svga->curr.sampler_views[i]->texture; local
287 data[0] = 1.0f / (float) tex->width0;
288 data[1] = 1.0f / (float) tex->height0;
294 key->tex[i].width_height_idx + offset,
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11tex/
d3d11tex.cpp 64 ID3D11Texture2D* tex; local
67 ensure(dev->CreateTexture2D(&texd, &texsd, &tex));
68 ensure(dev->CreateShaderResourceView(tex, 0, &srv[0]));
69 tex->Release();
72 ensure(dev->CreateTexture2D(&texd, &texsd, &tex));
73 ensure(dev->CreateShaderResourceView(tex, 0, &srv[1]));
74 tex->Release();
  /external/chromium_org/third_party/skia/include/utils/
SkMeshUtils.h 27 bool init(SkPoint tex[], uint16_t indices[],
34 const SkPoint* tex() const { return fTex; } function in class:SkMeshIndices
  /external/jmonkeyengine/engine/src/android/com/jme3/asset/
AndroidAssetManager.java 113 Texture tex = (Texture) loadAsset(key); local
119 tex.setMagFilter(Texture.MagFilter.Nearest);
120 tex.setAnisotropicFilter(0);
121 if (tex.getMinFilter().usesMipMapLevels()) {
122 tex.setMinFilter(Texture.MinFilter.NearestNearestMipMap);
124 tex.setMinFilter(Texture.MinFilter.NearestNoMipMaps);
126 return tex;
  /external/jmonkeyengine/engine/src/test/jme3test/asset/
TestAbsoluteLocators.java 57 Texture tex = am.loadTexture("Textures/Terrain/Pond/Pond.jpg"); local
64 if (tex == null)
TestOnlineJar.java 67 Texture tex = assetManager.loadTexture(key); local
70 mat.setTexture("ColorMap", tex);
73 float aspect = tex.getImage().getWidth() / (float) tex.getImage().getHeight();
TestUrlLoading.java 67 Texture tex = assetManager.loadTexture(key); local
70 mat.setTexture("ColorMap", tex);
73 float aspect = tex.getImage().getWidth() / (float) tex.getImage().getHeight();
  /external/jmonkeyengine/engine/src/test/jme3test/gui/
TestSoftwareMouse.java 95 Texture tex = assetManager.loadTexture("Interface/Logo/Cursor.png"); local
98 cursor.setTexture(assetManager, (Texture2D) tex, true);
105 // Image img = tex.getImage();
  /external/jmonkeyengine/engine/src/test/jme3test/model/shape/
TestCylinder.java 57 Texture tex = assetManager.loadTexture(key); local
58 tex.setMinFilter(Texture.MinFilter.Trilinear);
59 mat.setTexture("ColorMap", tex);
  /external/mesa3d/src/gallium/drivers/svga/
svga_sampler_view.c 61 struct svga_texture *tex = svga_texture(pt); local
93 if (tex->cached_view &&
94 tex->cached_view->min_lod == min_lod &&
95 tex->cached_view->max_lod == max_lod) {
96 svga_sampler_view_reference(&sv, tex->cached_view);
128 sv->handle = tex->handle;
143 sv->age = tex->age;
144 sv->handle = svga_texture_view_surface(svga, tex, flags, format,
153 sv->handle = tex->handle;
160 svga_sampler_view_reference(&tex->cached_view, sv)
172 struct svga_texture *tex = svga_texture(v->texture); local
207 struct svga_texture *tex = svga_texture(v->texture); local
    [all...]
svga_resource_texture.h 103 struct svga_texture *tex = (struct svga_texture *)resource; local
104 assert(tex == NULL || tex->b.vtbl == &svga_texture_vtbl);
105 return tex;