/external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/ |
LwjglGL1Renderer.java | 21 import com.jme3.texture.FrameBuffer; 22 import com.jme3.texture.Image; 23 import com.jme3.texture.Texture; 24 import com.jme3.texture.Texture.WrapAxis; 626 private int convertTextureType(Texture.Type type) { 635 throw new UnsupportedOperationException("Unknown texture type: " + type); 639 private int convertMagFilter(Texture.MagFilter filter) { 650 private int convertMinFilter(Texture.MinFilter filter) [all...] |
/external/mesa3d/src/gallium/auxiliary/tgsi/ |
tgsi_build.c | 274 tgsi_build_declaration_resource(unsigned texture, 283 dr.Resource = texture; 307 tgsi_build_declaration_sampler_view(unsigned texture, 318 dsv.Resource = texture; 594 instruction.Texture = 0; 714 instruction_texture.Texture = TGSI_TEXTURE_UNKNOWN; 723 unsigned texture, 731 instruction_texture.Texture = texture; 734 instruction->Texture = 1 [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
attrib.c | 127 GLbitfield Texture[MAX_TEXTURE_UNITS]; 157 * Special struct for saving/restoring texture state (GL_TEXTURE_BIT) 161 struct gl_texture_attrib Texture; /**< The usual context state */ 163 /** to save per texture object state (wrap modes, filters, etc): */ 167 * To save references to texture objects (so they don't get accidentally 173 * default texture objects are kept. We don't want that state to be 175 * texture objects. 320 attr->Texture[i] = ctx->Texture.Unit[i].Enabled; 321 attr->TexGen[i] = ctx->Texture.Unit[i].TexGenEnabled [all...] |
/external/mesa3d/src/mesa/main/ |
attrib.c | 127 GLbitfield Texture[MAX_TEXTURE_UNITS]; 157 * Special struct for saving/restoring texture state (GL_TEXTURE_BIT) 161 struct gl_texture_attrib Texture; /**< The usual context state */ 163 /** to save per texture object state (wrap modes, filters, etc): */ 167 * To save references to texture objects (so they don't get accidentally 173 * default texture objects are kept. We don't want that state to be 175 * texture objects. 320 attr->Texture[i] = ctx->Texture.Unit[i].Enabled; 321 attr->TexGen[i] = ctx->Texture.Unit[i].TexGenEnabled [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/ |
r300_tgsi_to_rc.c | 236 switch(src.Texture) { 291 if (src->Instruction.Texture) 292 transform_texture(dst, src->Texture,
|
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_cb_drawtex.c | 130 if (ctx->Texture.Unit[i]._ReallyEnabled & TEXTURE_2D_BIT) { 199 if (ctx->Texture.Unit[i]._ReallyEnabled & TEXTURE_2D_BIT) { 200 struct gl_texture_object *obj = ctx->Texture.Unit[i]._Current;
|
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
TestAttachDriver.java | 54 import com.jme3.texture.Texture; 111 Texture tex = assetManager.loadTexture(key); 112 tex.setMinFilter(Texture.MinFilter.Trilinear);
|
/external/mesa3d/src/gallium/drivers/r300/ |
r300_tgsi_to_rc.c | 236 switch(src.Texture) { 291 if (src->Instruction.Texture) 292 transform_texture(dst, src->Texture,
|
/external/mesa3d/src/mesa/state_tracker/ |
st_cb_drawtex.c | 130 if (ctx->Texture.Unit[i]._ReallyEnabled & TEXTURE_2D_BIT) { 199 if (ctx->Texture.Unit[i]._ReallyEnabled & TEXTURE_2D_BIT) { 200 struct gl_texture_object *obj = ctx->Texture.Unit[i]._Current;
|
/external/chromium_org/content/browser/aura/ |
gpu_process_transport_factory.cc | 61 class OwnedTexture : public ui::Texture, ImageTransportFactoryObserver { 67 : ui::Texture(true, size, device_scale_factor), 73 // ui::Texture overrides: 76 // texture but not yet fired the OnLostResources callback, so poll to see if 318 scoped_refptr<ui::Texture> GpuProcessTransportFactory::CreateTransportClient( 332 scoped_refptr<ui::Texture> GpuProcessTransportFactory::CreateOwnedTexture(
|
/external/chromium_org/native_client_sdk/src/examples/demo/earth/ |
earth.cc | 81 // simple container for earth texture 82 struct Texture { 85 Texture(int w, int h) : width(w), height(h) { 89 explicit Texture(int w, int h, uint32_t* p) : width(w), height(h) { 93 ~Texture() { delete[] pixels; } 95 DISALLOW_COPY_AND_ASSIGN(Texture); 260 // Source texture (earth map). 261 Texture* base_tex_; 262 Texture* night_tex_; 668 base_tex_ = new Texture(width, height, pixels) [all...] |
/external/chromium_org/native_client_sdk/src/gonacl_appengine/src/earth/ |
earth.cc | 70 // simple container for earth texture 71 struct Texture { 74 Texture(int w, int h) : width(w), height(h) { 78 explicit Texture(int w, int h, uint32_t* p) : width(w), height(h) { 82 ~Texture() { delete[] pixels; } 84 DISALLOW_COPY_AND_ASSIGN(Texture); 265 // Source texture (earth map). 266 Texture* base_tex_; 267 Texture* night_tex_; 723 base_tex_ = new Texture(width, height, pixels) [all...] |
/external/chromium_org/third_party/mesa/src/docs/ |
MESA_ycbcr_texture.spec | 34 This extension supports texture images stored in the YCbCr format. 36 during pixel transfer. The texture's YCbCr colors are converted to 37 RGB during texture sampling, after-which, all the usual per-fragment 38 operations take place. Only 2D texture images are supported (not 115 In section 3.8.1, Texture Image Specification, on page 125, add 126 All pixel transfer operations are bypassed. The texture is stored as 127 YCbCr, not RGB. Queries of the texture's red, green and blue component 129 texture sampling using an implementation dependent conversion. 132 In section 3.8.1, Texture Image Specification, on page 126, add 139 In section 3.8.2, Alternate Texture Image Specification Commands, o [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/ |
r200_tex.c | 56 * Set the texture wrap modes. 58 * \param t Texture object whose wrap modes are to be set 59 * \param swrap Wrap mode for the \a s texture coordinate 60 * \param twrap Wrap mode for the \a t texture coordinate 209 * Set the texture magnification and minification modes. 211 * \param t Texture whose filter modes are to be set 212 * \param minf Texture minification mode 213 * \param magf Texture magnification mode 274 * to set the 3D texture filter mode. 302 GLuint unit = ctx->Texture.CurrentUnit [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/ |
t_vb_normals.c | 98 !(ctx->Texture._GenFlags & TEXGEN_NEED_NORMALS))) {
|
/external/jmonkeyengine/engine/src/core/com/jme3/post/ |
HDRRenderer.java | 40 import com.jme3.texture.FrameBuffer;
41 import com.jme3.texture.Image;
42 import com.jme3.texture.Image.Format;
43 import com.jme3.texture.Texture;
44 import com.jme3.texture.Texture.MagFilter;
45 import com.jme3.texture.Texture.MinFilter;
46 import com.jme3.texture.Texture2D; [all...] |
/external/mesa3d/docs/ |
MESA_ycbcr_texture.spec | 34 This extension supports texture images stored in the YCbCr format. 36 during pixel transfer. The texture's YCbCr colors are converted to 37 RGB during texture sampling, after-which, all the usual per-fragment 38 operations take place. Only 2D texture images are supported (not 115 In section 3.8.1, Texture Image Specification, on page 125, add 126 All pixel transfer operations are bypassed. The texture is stored as 127 YCbCr, not RGB. Queries of the texture's red, green and blue component 129 texture sampling using an implementation dependent conversion. 132 In section 3.8.1, Texture Image Specification, on page 126, add 139 In section 3.8.2, Alternate Texture Image Specification Commands, o [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_tex.c | 56 * Set the texture wrap modes. 58 * \param t Texture object whose wrap modes are to be set 59 * \param swrap Wrap mode for the \a s texture coordinate 60 * \param twrap Wrap mode for the \a t texture coordinate 209 * Set the texture magnification and minification modes. 211 * \param t Texture whose filter modes are to be set 212 * \param minf Texture minification mode 213 * \param magf Texture magnification mode 274 * to set the 3D texture filter mode. 302 GLuint unit = ctx->Texture.CurrentUnit [all...] |
/external/mesa3d/src/mesa/tnl/ |
t_vb_normals.c | 98 !(ctx->Texture._GenFlags & TEXGEN_NEED_NORMALS))) {
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/ |
BasicTexture.java | 25 // BasicTexture is a Texture corresponds to a real GL texture. 27 // If a BasicTexture is loaded into GL memory, it has a GL texture id. 28 public abstract class BasicTexture implements Texture { 38 // Log a warning if a texture is larger along a dimension 75 * Sets the content size of this texture. In OpenGL, the actual texture 84 Log.w(TAG, String.format("texture is too large: %d x %d", 117 // Returns true if the texture has one pixel transparent border around the 120 // The jigged edges appear because we use GL_CLAMP_TO_EDGE for texture wra [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
BasicTexture.java | 25 // BasicTexture is a Texture corresponds to a real GL texture. 27 // If a BasicTexture is loaded into GL memory, it has a GL texture id. 28 public abstract class BasicTexture implements Texture { 38 // Log a warning if a texture is larger along a dimension 75 * Sets the content size of this texture. In OpenGL, the actual texture 84 Log.w(TAG, String.format("texture is too large: %d x %d", 117 // Returns true if the texture has one pixel transparent border around the 120 // The jigged edges appear because we use GL_CLAMP_TO_EDGE for texture wra [all...] |
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/ |
BasicTexture.java | 25 // BasicTexture is a Texture corresponds to a real GL texture. 27 // If a BasicTexture is loaded into GL memory, it has a GL texture id. 28 public abstract class BasicTexture implements Texture { 38 // Log a warning if a texture is larger along a dimension 75 * Sets the content size of this texture. In OpenGL, the actual texture 84 Log.w(TAG, String.format("texture is too large: %d x %d", 117 // Returns true if the texture has one pixel transparent border around the 120 // The jigged edges appear because we use GL_CLAMP_TO_EDGE for texture wra [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_state_init.c | 209 CHECK( cube0_mm, (ctx->Texture.Unit[0]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE ) 210 CHECK( cube1_mm, (ctx->Texture.Unit[1]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE ) 211 CHECK( cube2_mm, (ctx->Texture.Unit[2]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE ) 214 TCL_CHECK( tcl_tex0_add4, ctx->Texture.Unit[0]._ReallyEnabled, 4 ) 215 TCL_CHECK( tcl_tex1_add4, ctx->Texture.Unit[1]._ReallyEnabled, 4 ) 216 TCL_CHECK( tcl_tex2_add4, ctx->Texture.Unit[2]._ReallyEnabled, 4 ) 236 CHECK( txr0, (ctx->Texture.Unit[0]._ReallyEnabled & TEXTURE_RECT_BIT), 0 ) 237 CHECK( txr1, (ctx->Texture.Unit[1]._ReallyEnabled & TEXTURE_RECT_BIT), 0 ) 238 CHECK( txr2, (ctx->Texture.Unit[2]._ReallyEnabled & TEXTURE_RECT_BIT), 0 ) 421 radeonTexObj *t = r100->state.texture.unit[i].texobj [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_state_init.c | 209 CHECK( cube0_mm, (ctx->Texture.Unit[0]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE ) 210 CHECK( cube1_mm, (ctx->Texture.Unit[1]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE ) 211 CHECK( cube2_mm, (ctx->Texture.Unit[2]._ReallyEnabled & TEXTURE_CUBE_BIT), 2 + 4*5 - CUBE_STATE_SIZE ) 214 TCL_CHECK( tcl_tex0_add4, ctx->Texture.Unit[0]._ReallyEnabled, 4 ) 215 TCL_CHECK( tcl_tex1_add4, ctx->Texture.Unit[1]._ReallyEnabled, 4 ) 216 TCL_CHECK( tcl_tex2_add4, ctx->Texture.Unit[2]._ReallyEnabled, 4 ) 236 CHECK( txr0, (ctx->Texture.Unit[0]._ReallyEnabled & TEXTURE_RECT_BIT), 0 ) 237 CHECK( txr1, (ctx->Texture.Unit[1]._ReallyEnabled & TEXTURE_RECT_BIT), 0 ) 238 CHECK( txr2, (ctx->Texture.Unit[2]._ReallyEnabled & TEXTURE_RECT_BIT), 0 ) 421 radeonTexObj *t = r100->state.texture.unit[i].texobj [all...] |
/external/chromium_org/third_party/angle/src/libGLESv2/ |
ResourceManager.cpp | 17 #include "libGLESv2/Texture.h" 106 // Returns an unused texture name 176 void ResourceManager::deleteTexture(GLuint texture) 178 TextureMap::iterator textureObject = mTextureMap.find(texture); 228 Texture *ResourceManager::getTexture(unsigned int handle) 232 TextureMap::iterator texture = mTextureMap.find(handle); 234 if (texture == mTextureMap.end()) 240 return texture->second; 287 void ResourceManager::checkTextureAllocation(GLuint texture, TextureType type) 289 if (!getTexture(texture) && texture != 0 [all...] |