Searched defs:texture (Results 1 - 25 of 348) sorted by relevance

1234567891011>>

/external/skia/tools/gpu/gl/debug/
H A DGrTextureUnitObj.cpp12 void GrTextureUnitObj::setTexture(GrTextureObj *texture) { argument
22 fTexture = texture;
/external/skqp/tools/gpu/gl/debug/
H A DGrTextureUnitObj.cpp12 void GrTextureUnitObj::setTexture(GrTextureObj *texture) { argument
22 fTexture = texture;
/external/deqp/external/vulkancts/modules/vulkan/texture/
H A DvktTextureCompressedFormatTests.hpp24 * \brief Compressed texture tests.
32 namespace texture namespace in namespace:vkt
37 } // texture
H A DvktTextureFilteringAnisotropyTests.hpp30 namespace texture namespace in namespace:vkt
35 } // texture
H A DvktTextureFilteringExplicitLodTests.hpp30 namespace texture namespace in namespace:vkt
35 } // texture
H A DvktTextureFilteringTests.hpp33 namespace texture namespace in namespace:vkt
38 } // texture
H A DvktTextureMipmapTests.hpp34 namespace texture namespace in namespace:vkt
39 } // texture
H A DvktTextureShadowTests.hpp24 * \brief Shadow texture lookup tests.
32 namespace texture namespace in namespace:vkt
37 } // texture
H A DvktTextureTests.hpp25 * \brief Functional texture tests.
33 namespace texture namespace in namespace:vkt
38 } // texture
H A DvktTextureTests.cpp37 namespace texture namespace in namespace:vkt
58 return createTestGroup(testCtx, "texture", "Texture Tests", createTextureTests);
61 } // texture
H A DvktSampleVerifierUtil.cpp36 namespace texture namespace in namespace:vkt
740 DE_FATAL("Invalid texture channel type");
951 } // texture
/external/mesa3d/src/gallium/auxiliary/hud/
H A Dfont.h40 /* The font is stored in a RECT texture. There are 256 glyphs
41 * drawn in a 16x16 matrix. The texture coordinates of a glyph
50 struct pipe_resource *texture; member in struct:util_font
/external/mesa3d/src/mesa/state_tracker/
H A Dst_sampler_view.h40 struct pipe_resource *texture,
45 u_sampler_view_default_template(&templ, texture, format);
47 return pipe->create_sampler_view(pipe, texture, &templ);
53 struct pipe_resource *texture)
55 return st_create_texture_sampler_view_format(pipe, texture,
56 texture->format);
39 st_create_texture_sampler_view_format(struct pipe_context *pipe, struct pipe_resource *texture, enum pipe_format format) argument
52 st_create_texture_sampler_view(struct pipe_context *pipe, struct pipe_resource *texture) argument
H A Dst_cb_fbo.h49 struct pipe_resource *texture; member in struct:st_renderbuffer
50 struct pipe_surface *surface; /* temporary view into texture */
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
H A DShadowSurfaceTest.java14 private final SurfaceTexture texture = new SurfaceTexture(0); field in class:ShadowSurfaceTest
15 private final Surface surface = new Surface(texture);
19 assertThat(shadowOf(surface).getSurfaceTexture()).isEqualTo(texture);
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_sampler.c39 const struct pipe_resource *texture,
45 /* XXX: Check if format is compatible with texture->format.
48 view->target = texture->target;
51 view->u.tex.last_level = texture->last_level;
53 view->u.tex.last_layer = texture->target == PIPE_TEXTURE_3D ?
54 texture->depth0 - 1 : texture->array_size - 1;
90 const struct pipe_resource *texture,
95 texture,
102 const struct pipe_resource *texture,
38 default_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format, unsigned expand_green_blue) argument
89 u_sampler_view_default_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format) argument
101 u_sampler_view_default_dx9_template(struct pipe_sampler_view *view, const struct pipe_resource *texture, enum pipe_format format) argument
[all...]
/external/deqp/external/vulkancts/modules/vulkan/image/
H A DvktImageTexture.hpp44 int numSamples (void) const { return m_numSamples; } //!< Number of samples per texel (multisampled texture)
46 tcu::IVec3 size (void) const; //!< Size including number of layers in additional dimension (e.g. z in 2d texture)
59 inline bool isCube (const Texture& texture) argument
61 return texture.type() == IMAGE_TYPE_CUBE || texture.type() == IMAGE_TYPE_CUBE_ARRAY;
/external/deqp/framework/randomshaders/
H A DrsgSamplers.hpp43 Sampler2D (const tcu::Texture2D* texture, const tcu::Sampler& sampler) argument
44 : m_texture (texture)
68 SamplerCube (const tcu::TextureCube* texture, const tcu::Sampler& sampler) argument
69 : m_texture (texture)
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_sampler_view.h45 * A sampler's view into a texture
48 * the texture and in there by holding a reference
49 * from the texture to the sampler view.
52 * texture from the sampler view. So the user
54 * texture has a reference take for as long as
58 * texture is enough.
64 struct pipe_resource *texture; member in struct:svga_sampler_view
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_texture.c40 struct pipe_resource *texture)
44 if (!texture)
47 assert(texture->screen == tr_scr->screen);
53 memcpy(&tr_res->base, texture, sizeof(struct pipe_resource));
57 tr_res->resource = texture;
62 pipe_resource_reference(&texture, NULL);
86 assert(surface->texture == tr_res->resource);
96 tr_surf->base.texture = NULL;
97 pipe_resource_reference(&tr_surf->base.texture, &tr_res->base);
112 pipe_resource_reference(&tr_surf->base.texture, NUL
39 trace_resource_create(struct trace_screen *tr_scr, struct pipe_resource *texture) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Dgenmipmap.c86 * texture-filterable according to table 8.10."
197 _mesa_GenerateTextureMipmap(GLuint texture) argument
202 texObj = _mesa_lookup_texture_err(ctx, texture, "glGenerateTextureMipmap");
/external/replicaisland/src/com/replica/replicaisland/
H A DAnimationFrame.java20 * A single animation frame. Frames contain a texture, a hold time, and collision volumes to
23 * frames. Note that an animation frame may have a null texture and null collision volumes. Null
24 * collision volumes will exclude that frame from collision detection and a null texture will
28 public Texture texture; field in class:AnimationFrame
35 texture = textureObject;
43 texture = textureObject;
H A DOpenGLSystem.java53 public static final void bindTexture(int target, int texture) { argument
54 if (sLastBoundTexture != texture) {
55 sGL.glBindTexture(target, texture);
56 sLastBoundTexture = texture;
/external/skia/src/gpu/gl/
H A DGrGLGpuCommandBuffer.h22 GrGLGpuTextureCommandBuffer(GrGLGpu* gpu, GrTexture* texture, GrSurfaceOrigin origin) argument
23 : INHERITED(texture, origin)
/external/skia/src/gpu/mock/
H A DGrMockGpuCommandBuffer.h16 GrMockGpuTextureCommandBuffer(GrTexture* texture, GrSurfaceOrigin origin) argument
17 : INHERITED(texture, origin) {

Completed in 3611 milliseconds

1234567891011>>