Searched refs:Texture (Results 1 - 25 of 260) sorted by relevance

1234567891011

/external/replicaisland/src/com/replica/replicaisland/
H A DTexture.java22 * been loaded into vram. Objects can cache Texture objects but should *never* cache the texture
25 public class Texture extends AllocationGuard { class in inherits:AllocationGuard
32 public Texture() { method in class:Texture
H A DAnimationFrame.java28 public Texture texture;
33 public AnimationFrame(Texture textureObject, float animationHoldTime) {
39 public AnimationFrame(Texture textureObject, float animationHoldTime,
H A DDebugSystem.java27 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);
83 private final Texture getTexture(int shapeType, int colorType) {
84 Texture result = null;
H A DTextureLibrary.java33 * The Texture Library manages all textures in the game. Textures are pooled and handed out to
36 * a call to loadTexture() or loadAllTextures(). This allows Texture objects to be dispersed to
42 Texture[] mTextureHash;
50 mTextureHash = new Texture[DEFAULT_SIZE];
52 mTextureHash[x] = new Texture();
67 * Creates a Texture object that is mapped to the passed resource id. If a texture has already
68 * been allocated for this id, the previously allocated Texture object is returned.
72 public Texture allocateTexture(int resourceID) {
73 Texture texture = getTextureByResource(resourceID);
82 public Texture loadTextur
[all...]
H A DDrawableObject.java52 public Texture getTexture() {
H A DScrollableBitmap.java27 public ScrollableBitmap(Texture texture, int width, int height) {
/external/deqp/external/vulkancts/modules/vulkan/image/
H A DvktImageTexture.hpp23 * \brief Texture utility class
34 //! Texture buffer/image abstraction. Helps managing size and number of layers.
35 class Texture class in namespace:vkt::image
38 Texture (const ImageType imageType, const tcu::IVec3& imageLayerSize, const int layers, const int samples = 1);
39 Texture (const Texture& other, const int samples);
41 ImageType type (void) const { return m_type; } //!< Texture type
59 inline bool isCube (const Texture& texture)
H A DvktImageTexture.cpp21 * \brief Texture utility class
31 void Texture::checkInvariants (void) const
84 Texture::Texture (const ImageType imageType, const tcu::IVec3& imageLayerSize, const int layers, const int samples) function in class:vkt::image::Texture
93 Texture::Texture (const Texture& other, const int samples) function in class:vkt::image::Texture
102 tcu::IVec3 Texture::size (void) const
126 int Texture::dimension (void) const
150 int Texture
[all...]
H A DvktImageSizeTests.cpp54 Texture getTexture (const ImageType imageType, const tcu::IVec3& size)
60 return Texture(imageType, tcu::IVec3(size.x(), 1, 1), 1);
63 return Texture(imageType, tcu::IVec3(size.x(), 1, 1), size.y());
66 return Texture(imageType, tcu::IVec3(size.x(), size.y(), 1), 1);
69 return Texture(imageType, tcu::IVec3(size.x(), size.y(), 1), size.z());
72 return Texture(imageType, tcu::IVec3(size.x(), size.x(), 1), 6);
75 return Texture(imageType, tcu::IVec3(size.x(), size.x(), 1), 2*6);
78 return Texture(imageType, size, 1);
82 return Texture(IMAGE_TYPE_LAST, tcu::IVec3(), 0);
86 inline VkImageCreateInfo makeImageCreateInfo (const Texture
[all...]
/external/swiftshader/src/D3D9/
H A DCapabilities.cpp267 bool Capabilities::Texture::RenderTarget::NULL_ = true;
268 bool Capabilities::Texture::RenderTarget::R8G8B8 = false;
269 bool Capabilities::Texture::RenderTarget::R5G6B5 = true;
270 bool Capabilities::Texture::RenderTarget::X1R5G5B5 = true;
271 bool Capabilities::Texture::RenderTarget::A1R5G5B5 = true;
272 bool Capabilities::Texture::RenderTarget::A4R4G4B4 = true;
273 bool Capabilities::Texture::RenderTarget::R3G3B2 = false;
274 bool Capabilities::Texture::RenderTarget::A8R3G3B2 = false;
275 bool Capabilities::Texture::RenderTarget::X4R4G4B4 = true;
276 bool Capabilities::Texture
[all...]
H A DDirect3D9.cpp117 Capabilities::Texture::DepthStencil::D32 = false;
118 Capabilities::Texture::DepthStencil::D24S8 = false;
119 Capabilities::Texture::DepthStencil::D24X8 = false;
120 Capabilities::Texture::DepthStencil::D16 = false;
121 Capabilities::Texture::DepthStencil::D24FS8 = false;
122 Capabilities::Texture::DepthStencil::D32F_LOCKABLE = false;
124 Capabilities::Texture::D32 = false;
125 Capabilities::Texture::D24S8 = false;
126 Capabilities::Texture::D24X8 = false;
127 Capabilities::Texture
[all...]
/external/swiftshader/src/OpenGL/common/
H A DSurface.hpp27 class Texture;
47 virtual void setBoundTexture(egl::Texture *texture) = 0;
/external/swiftshader/src/OpenGL/libEGL/
H A DTexture.hpp27 class Texture : public gl::NamedObject class in namespace:egl
30 Texture(GLuint name) : NamedObject(name) {} function in class:egl::Texture
/external/swiftshader/src/D3D8/
H A DCapabilities.cpp189 bool Capabilities::Texture::RenderTarget::R8G8B8 = false;
190 bool Capabilities::Texture::RenderTarget::R5G6B5 = true;
191 bool Capabilities::Texture::RenderTarget::X1R5G5B5 = true;
192 bool Capabilities::Texture::RenderTarget::A1R5G5B5 = true;
193 bool Capabilities::Texture::RenderTarget::A4R4G4B4 = true;
194 bool Capabilities::Texture::RenderTarget::R3G3B2 = false;
195 bool Capabilities::Texture::RenderTarget::A8R3G3B2 = false;
196 bool Capabilities::Texture::RenderTarget::X4R4G4B4 = true;
197 bool Capabilities::Texture::RenderTarget::A8R8G8B8 = true;
198 bool Capabilities::Texture
[all...]
H A DDirect3D8.cpp402 case D3DFMT_R8G8B8: if(!Capabilities::Texture::RenderTarget::R8G8B8) return NOTAVAILABLE(); else return D3D_OK;
403 case D3DFMT_R5G6B5: if(!Capabilities::Texture::RenderTarget::R5G6B5) return NOTAVAILABLE(); else return D3D_OK;
404 case D3DFMT_X1R5G5B5: if(!Capabilities::Texture::RenderTarget::X1R5G5B5) return NOTAVAILABLE(); else return D3D_OK;
405 case D3DFMT_A1R5G5B5: if(!Capabilities::Texture::RenderTarget::A1R5G5B5) return NOTAVAILABLE(); else return D3D_OK;
406 case D3DFMT_A4R4G4B4: if(!Capabilities::Texture::RenderTarget::A4R4G4B4) return NOTAVAILABLE(); else return D3D_OK;
407 case D3DFMT_R3G3B2: if(!Capabilities::Texture::RenderTarget::R3G3B2) return NOTAVAILABLE(); else return D3D_OK;
408 case D3DFMT_A8R3G3B2: if(!Capabilities::Texture::RenderTarget::A8R3G3B2) return NOTAVAILABLE(); else return D3D_OK;
409 case D3DFMT_X4R4G4B4: if(!Capabilities::Texture::RenderTarget::X4R4G4B4) return NOTAVAILABLE(); else return D3D_OK;
410 case D3DFMT_A8R8G8B8: if(!Capabilities::Texture::RenderTarget::A8R8G8B8) return NOTAVAILABLE(); else return D3D_OK;
411 case D3DFMT_X8R8G8B8: if(!Capabilities::Texture
[all...]
/external/mesa3d/src/mesa/main/
H A Dtexstate.c28 * Texture state handling.
73 dst->Texture.CurrentUnit = src->Texture.CurrentUnit;
74 dst->Texture._GenFlags = src->Texture._GenFlags;
75 dst->Texture._TexGenEnabled = src->Texture._TexGenEnabled;
76 dst->Texture._TexMatEnabled = src->Texture._TexMatEnabled;
80 dst->Texture
[all...]
H A Dtexstate.h3 * Texture state management.
44 assert(unit < ARRAY_SIZE(ctx->Texture.Unit));
45 return &(ctx->Texture.Unit[unit]);
55 return _mesa_get_tex_unit(ctx, ctx->Texture.CurrentUnit);
/external/swiftshader/src/OpenGL/libGLES_CM/
H A DResourceManager.h30 class Texture;
60 Texture *getTexture(GLuint handle);
71 gl::NameSpace<Texture> mTextureNameSpace;
H A DTexture.cpp15 // Texture.cpp: Implements the Texture class and its derived classes
19 #include "Texture.h"
34 Texture::Texture(GLuint name) : egl::Texture(name) function in class:es1::Texture
50 Texture::~Texture()
55 sw::Resource *Texture::getResource() const
61 bool Texture
[all...]
H A DResourceManager.cpp22 #include "Texture.h"
92 Texture *textureObject = mTextureNameSpace.remove(texture);
115 Texture *ResourceManager::getTexture(unsigned int handle)
140 Texture *textureObject;
/external/deqp/external/openglcts/modules/gles32/
H A Des32cRobustBufferAccessBehaviorTests.cpp131 Texture::Bind(gl, texture_id, GL_TEXTURE_2D);
133 Texture::GetData(gl, texture_id, 0 /* level */, width, height, GL_RGBA_INTEGER, GL_UNSIGNED_INT, pixels);
136 Texture::Bind(gl, 0, GL_TEXTURE_2D);
331 /* Texture storage parameters */
366 Texture::Bind(gl, texture_id, target);
367 Texture::Storage(gl, target, n_levels, internal_format, width, height, 0);
379 Texture::Bind(gl, 0, target);
392 Texture::SubImage(gl, GL_TEXTURE_2D, 0 /* level */, 0 /* x */, 0 /* y */, 0 /* z */, width, height,
406 Texture::SubImage(gl, GL_TEXTURE_2D, 0 /* level */, 0 /* x */, 0 /* y */, 0 /* z */, width, height,
422 Texture
[all...]
/external/mesa3d/src/mesa/drivers/dri/nouveau/
H A Dnv04_state_tex.c68 if (ctx->Texture.Unit[i]._Current) {
69 struct gl_texture_object *t = ctx->Texture.Unit[i]._Current;
84 lod_bias = CLAMP(ctx->Texture.Unit[i].LodBias +
/external/swiftshader/src/OpenGL/libGL/
H A DResourceManager.h35 class Texture;
72 Texture *getTexture(GLuint handle);
95 typedef std::map<GLint, Texture*> TextureMap;
/external/swiftshader/src/OpenGL/libGLESv2/
H A DResourceManager.h32 class Texture;
78 Texture *getTexture(GLuint handle);
97 gl::NameSpace<Texture> mTextureNameSpace;
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cSparseTextureTests.cpp100 * @param target Texture target
124 * @param target Texture target
125 * @param format Texture internal format
126 * @param pageSizeX Texture page size reference for X dimension
127 * @param pageSizeY Texture page size reference for X dimension
128 * @param pageSizeZ Texture page size reference for X dimension
146 * @param state Texture current state
147 * @param level Texture mipmap level
148 * @param width Texture output width
149 * @param height Texture outpu
[all...]

Completed in 689 milliseconds

1234567891011