Home
last modified time | relevance | path

Searched refs:fillTextureData (Results 1 – 12 of 12) sorted by relevance

/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/angle/src/tests/gl_tests/
H A DIncompleteTextureTest.cpp71 void fillTextureData(std::vector<GLubyte> &buffer, GLubyte r, GLubyte g, GLubyte b, GLubyte a) in fillTextureData() function in IncompleteTextureTest
100 fillTextureData(textureData, 255, 0, 0, 255); in TEST_P()
134 fillTextureData(redTextureData, 255, 0, 0, 255); in TEST_P()
150 fillTextureData(greenTextureData, 0, 255, 0, 255); in TEST_P()
/dports/math/scilab/scilab-6.1.1/scilab/modules/graphic_objects/includes/
H A DMatPlotDecomposer.hxx25 static int fillTextureData(int id, unsigned char* buffer, int bufferLength);
26 …static int fillTextureData(int id, unsigned char* buffer, int bufferLength, int x, int y, int widt…
H A DDataLoader.hxx51 int fillTextureData(int id, unsigned char* buffer, int bufferLength);
/dports/math/scilab/scilab-6.1.1/scilab/modules/graphic_objects/src/cpp/
H A DMatPlotDecomposer.cpp51 int MatPlotDecomposer::fillTextureData(int id, unsigned char* buffer, int bufferLength) in fillTextureData() function in MatPlotDecomposer
157 int MatPlotDecomposer::fillTextureData(int id, unsigned char* buffer, int bufferLength, int x, int … in fillTextureData() function in MatPlotDecomposer
230 fillTextureData(id, buffer, bsize); in getTextureData()
H A DDataLoader.cpp67 int fillTextureData(int id, unsigned char* buffer, int bufferLength) in fillTextureData() function
74 return MatPlotDecomposer::fillTextureData(id, buffer, bufferLength); in fillTextureData()
89 return MatPlotDecomposer::fillTextureData(id, buffer, bufferLength, x, y, width, height); in fillSubTextureData()
/dports/math/scilab/scilab-6.1.1/scilab/modules/graphic_objects/src/java/org/scilab/modules/graphic_objects/
H A DMainDataLoader.java129 public static void fillTextureData(Integer id, ByteBuffer buffer, int bufferLength) { in fillTextureData() method in MainDataLoader
130 DataLoader.fillTextureData(id, buffer, bufferLength); in fillTextureData()
133 …public static void fillTextureData(Integer identifier, ByteBuffer buffer, int bufferLength, int x,… in fillTextureData() method in MainDataLoader
H A DDataLoader.java20 public static int fillTextureData(int id, java.nio.ByteBuffer buffer, int bufferLength) { in fillTextureData() method in DataLoader
23 return DataLoaderJNI.fillTextureData(id, buffer, bufferLength); in fillTextureData()
H A DDataLoaderJNI.java24 public final static native int fillTextureData(int jarg1, java.nio.ByteBuffer jarg2, int jarg3); in fillTextureData() method in DataLoaderJNI
/dports/math/scilab/scilab-6.1.1/scilab/modules/renderer/src/java/org/scilab/modules/renderer/JoGLView/
H A DScilabTextureManager.java156 MainDataLoader.fillTextureData(identifier, buffer, buffer.capacity()); in getData()
172 MainDataLoader.fillTextureData(identifier, buffer, bufferLength, x, y, width, height); in getSubData()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/modules/gles31/functional/
H A Des31fOpaqueTypeIndexingTests.cpp464 static void fillTextureData (const tcu::PixelBufferAccess& access, de::Random& rnd) in fillTextureData() function
521 fillTextureData(refTexAccess, rnd); in iterate()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/modules/vulkan/shaderexecutor/
H A DvktOpaqueTypeIndexingTests.cpp432 static void fillTextureData (const tcu::PixelBufferAccess& access, de::Random& rnd) in fillTextureData() function
740 fillTextureData(refTexAccess, rnd); in iterate()
/dports/math/scilab/scilab-6.1.1/scilab/modules/graphic_objects/src/jni/
H A DDataLoader_wrap.c825 result = (int)fillTextureData(arg1,arg2,arg3); in Java_org_scilab_modules_graphic_1objects_DataLoaderJNI_fillTextureData()