Home
last modified time | relevance | path

Searched refs:textureMemory (Results 1 – 3 of 3) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Main/
DSwiftConfig.cpp291 …html += "<option value='128'" + (config.textureMemory == 128 ? selected : empty) + ">128 MB</opt… in page()
292 …html += "<option value='256'" + (config.textureMemory == 256 ? selected : empty) + ">256 MB (def… in page()
293 …html += "<option value='512'" + (config.textureMemory == 512 ? selected : empty) + ">512 MB</opt… in page()
294 …html += "<option value='1024'" + (config.textureMemory == 1024 ? selected : empty) + ">1024 MB</op… in page()
295 …html += "<option value='2048'" + (config.textureMemory == 2048 ? selected : empty) + ">2048 MB</op… in page()
568 config.textureMemory = integer; in parsePost()
723 config.textureMemory = ini.getInteger("Capabilities", "TextureMemory", 256); in readConfiguration()
782 ini.addValue("Capabilities", "TextureMemory", itoa(config.textureMemory)); in writeConfiguration()
DSwiftConfig.hpp36 int textureMemory; member
/third_party/flutter/skia/third_party/externals/sdl/src/render/direct3d11/
DSDL_render_d3d11.c1888 D3D11_MAPPED_SUBRESOURCE textureMemory; in D3D11_UpdateTextureInternal() local
1913 &textureMemory in D3D11_UpdateTextureInternal()
1922 dst = textureMemory.pData; in D3D11_UpdateTextureInternal()
1924 if (length == pitch && length == textureMemory.RowPitch) { in D3D11_UpdateTextureInternal()
1930 if (length > textureMemory.RowPitch) { in D3D11_UpdateTextureInternal()
1931 length = textureMemory.RowPitch; in D3D11_UpdateTextureInternal()
1936 dst += textureMemory.RowPitch; in D3D11_UpdateTextureInternal()
2030 D3D11_MAPPED_SUBRESOURCE textureMemory; in D3D11_LockTexture() local
2088 &textureMemory in D3D11_LockTexture()
2105 *pixels = textureMemory.pData; in D3D11_LockTexture()
[all …]