Searched refs:texture (Results 1 - 25 of 722) sorted by relevance

1234567891011>>

/external/mesa3d/src/gallium/auxiliary/util/
H A Du_sampler.h44 const struct pipe_resource *texture,
49 const struct pipe_resource *texture,
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/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
/external/deqp/modules/internal/
H A DditImageIOTests.cpp54 tcu::TextureLevel texture; local
55 tcu::ImageIO::loadImage(texture, m_testCtx.getArchive(), m_filename.c_str());
57 m_testCtx.getLog() << TestLog::Message << "Loaded " << texture.getWidth() << "x" << texture.getHeight() << "x" << texture.getDepth() << " image with format " << texture.getFormat() << TestLog::EndMessage;
60 TCU_CHECK(texture.getAccess().getRowPitch() == texture.getWidth()*texture.getFormat().getPixelSize());
61 TCU_CHECK(texture
[all...]
/external/swiftshader/src/Renderer/
H A DSampler.cpp42 Mipmap &mipmap = texture.mipmap[level];
73 texture.LOD = 0.0f;
76 texture.baseLevel = 0;
77 texture.maxLevel = 1000;
78 texture.maxLod = MAX_TEXTURE_LOD;
79 texture.minLod = 0;
119 Mipmap &mipmap = texture.mipmap[level];
137 texture.widthHeightLOD[0] = width * exp2LOD;
138 texture.widthHeightLOD[1] = width * exp2LOD;
139 texture
[all...]
/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
/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 DTextureLibrary.java34 * requesting parties via allocateTexture(). However, the texture data itself is not immediately
37 * various game systems and while the texture data itself is streamed in or loaded as necessary.
67 * Creates a Texture object that is mapped to the passed resource id. If a texture has already
73 Texture texture = getTextureByResource(resourceID);
74 if (texture == null) {
75 texture = addTexture(resourceID, -1, 0, 0);
78 return texture;
81 /** Loads a single texture into memory. Does nothing if the texture is already loaded. */
83 Texture texture
127 loadBitmap(Context context, GL10 gl, Texture texture) argument
[all...]
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/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/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/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/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/gallium/drivers/r300/
H A Dr300_transfer.h33 struct pipe_resource *texture,
/external/swiftshader/src/OpenGL/libGLES_CM/
H A DResourceManager.cpp68 // Returns an unused texture name
90 void ResourceManager::deleteTexture(GLuint texture) argument
92 Texture *textureObject = mTextureNameSpace.remove(texture);
136 void ResourceManager::checkTextureAllocation(GLuint texture, TextureType type) argument
138 if(!getTexture(texture) && texture != 0)
144 textureObject = new Texture2D(texture);
148 textureObject = new TextureExternal(texture);
158 mTextureNameSpace.insert(texture, textureObject);
/external/deqp/framework/common/
H A DtcuTexCompareVerifier.hpp55 bool isTexCompareResultValid (const Texture2DView& texture, const Sampler& sampler, const TexComparePrecision& prec, const Vec2& coord, const Vec2& lodBounds, const float cmpReference, const float result);
56 bool isTexCompareResultValid (const TextureCubeView& texture, const Sampler& sampler, const TexComparePrecision& prec, const Vec3& coord, const Vec2& lodBounds, const float cmpReference, const float result);
57 bool isTexCompareResultValid (const Texture2DArrayView& texture, const Sampler& sampler, const TexComparePrecision& prec, const Vec3& coord, const Vec2& lodBounds, const float cmpReference, const float result);
59 bool isGatherOffsetsCompareResultValid (const Texture2DView& texture, const Sampler& sampler, const TexComparePrecision& prec, const Vec2& coord, const IVec2 (&offsets)[4], float cmpReference, const Vec4& result);
60 bool isGatherOffsetsCompareResultValid (const Texture2DArrayView& texture, const Sampler& sampler, const TexComparePrecision& prec, const Vec3& coord, const IVec2 (&offsets)[4], float cmpReference, const Vec4& result);
62 bool isGatherCompareResultValid (const TextureCubeView& texture, const Sampler& sampler, const TexComparePrecision& prec, const Vec3& coord, float cmpReference, const Vec4& result);
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_texture.h89 trace_resource(struct pipe_resource *texture) argument
91 if (!texture)
93 (void)trace_screen(texture->screen);
94 return (struct trace_resource *)texture;
103 (void)trace_resource(surface->texture);
129 struct pipe_resource *texture);
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...]

Completed in 769 milliseconds

1234567891011>>