HomeSort by relevance Sort by last modified time
    Searched refs:bufferMode (Results 1 - 25 of 133) sorted by null

1 2 3 4 5 6

  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glTransformFeedbackVaryings.java 1 // C function void glTransformFeedbackVaryings ( GLuint program, GLsizei count, const GLchar *varyings, GLenum bufferMode )
6 int bufferMode
glTransformFeedbackVaryings.cpp 1 /* void glTransformFeedbackVaryings ( GLuint program, GLsizei count, const GLchar *varyings, GLenum bufferMode ) */
5 (JNIEnv *_env, jobject _this, jint program, jobjectArray varyings_ref, jint bufferMode) {
33 glTransformFeedbackVaryings(program, _count, _varyings, bufferMode);
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/SDL/
SDLInputManager.cpp 85 Object* SDLInputManager::createInputObject( Type iType, bool bufferMode )
91 case OISKeyboard: obj = new SDLKeyboard( bufferMode ); break;
92 case OISMouse: obj = new SDLMouse( bufferMode ); break;
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/
OISFactoryCreator.h 69 @param bufferMode True to setup for buffered events
72 virtual Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "") = 0;
OISInputManager.h 112 Object* createInputObject( Type iType, bool bufferMode, const std::string &vendor = "");
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/SDL/
SDLInputManager.h 51 Object* createInputObject( Type iType, bool bufferMode );
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/mac/
MacInputManager.cpp 173 Object* MacInputManager::createObject(InputManager* creator, Type iType, bool bufferMode,
183 obj = new MacKeyboard(this, bufferMode, mUseRepeat);
189 obj = new MacMouse(this, bufferMode);
194 obj = mHIDManager->createObject(creator, iType, bufferMode, vendor);
CocoaInputManager.mm 151 Object* CocoaInputManager::createObject(InputManager* creator, Type iType, bool bufferMode,
161 obj = new CocoaKeyboard(this, bufferMode, mUseRepeat);
167 obj = new CocoaMouse(this, bufferMode);
172 obj = mHIDManager->createObject(creator, iType, bufferMode, vendor);
  /external/deqp/external/vulkancts/modules/vulkan/ubo/
vktRandomUniformBlockCase.hpp 65 BufferMode bufferMode,
vktUniformBlockTests.cpp 72 BlockSingleStructCase (tcu::TestContext& testCtx, const std::string& name, const std::string& description, deUint32 layoutFlags, BufferMode bufferMode, int numInstances)
73 : UniformBlockCase (testCtx, name, description, bufferMode)
97 BlockSingleStructArrayCase (tcu::TestContext& testCtx, const std::string& name, const std::string& description, deUint32 layoutFlags, BufferMode bufferMode, int numInstances)
98 : UniformBlockCase (testCtx, name, description, bufferMode)
124 BlockSingleNestedStructCase (tcu::TestContext& testCtx, const std::string& name, const std::string& description, deUint32 layoutFlags, BufferMode bufferMode, int numInstances)
125 : UniformBlockCase (testCtx, name, description, bufferMode)
156 BlockSingleNestedStructArrayCase (tcu::TestContext& testCtx, const std::string& name, const std::string& description, deUint32 layoutFlags, BufferMode bufferMode, int numInstances
    [all...]
  /external/deqp/modules/glshared/
glsRandomUniformBlockCase.hpp 73 BufferMode bufferMode,
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/linux/
LinuxInputManager.h 60 Object* createObject(InputManager *creator, Type iType, bool bufferMode, const std::string & vendor = "");
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/mac/
CocoaInputManager.h 59 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
MacInputManager.h 58 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
MacHIDManager.h 90 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/win32/
Win32InputManager.h 57 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/extras/LIRC/
OISLIRCFactoryCreator.h 58 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/linux/
LinuxInputManager.cpp 165 Object* LinuxInputManager::createObject(InputManager *creator, Type iType, bool bufferMode, const std::string & vendor)
174 obj = new LinuxKeyboard(this, bufferMode, grabKeyboard);
181 obj = new LinuxMouse(this, bufferMode, grabMouse, hideMouse);
191 obj = new LinuxJoyStick(this, bufferMode, *i);
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/win32/extras/WiiMote/
OISWiiMoteFactoryCreator.h 68 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/iphone/
iPhoneInputManager.mm 191 Object* iPhoneInputManager::createObject(InputManager* creator, Type iType, bool bufferMode,
201 obj = new iPhoneAccelerometer(this, bufferMode);
207 obj = new iPhoneMultiTouch(this, bufferMode);
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/includes/iphone/
iPhoneInputManager.h 73 Object* createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor = "");
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/ois-v1-4svn/src/win32/
Win32InputManager.cpp 235 Object* Win32InputManager::createObject(InputManager* creator, Type iType, bool bufferMode, const std::string & vendor)
244 obj = new Win32Keyboard(this, mDirectInput, bufferMode, kbSettings);
250 obj = new Win32Mouse(this, mDirectInput, bufferMode, mouseSettings);
259 obj = new Win32JoyStick(this, mDirectInput, bufferMode, joySettings, *i);
  /external/deqp/modules/gles3/functional/
es3fUniformBlockTests.cpp 45 static void createRandomCaseGroup (tcu::TestCaseGroup* parentGroup, Context& context, const char* groupName, const char* description, UniformBlockCase::BufferMode bufferMode, deUint32 features, int numCases, deUint32 baseSeed)
54 de::toString(ndx).c_str(), "", bufferMode, features, (deUint32)ndx+baseSeed));
87 BlockSingleStructCase (Context& context, const char* name, const char* description, deUint32 layoutFlags, BufferMode bufferMode, int numInstances)
88 : UniformBlockCase (context.getTestContext(), context.getRenderContext(), name, description, glu::GLSL_VERSION_300_ES, bufferMode)
120 BlockSingleStructArrayCase (Context& context, const char* name, const char* description, deUint32 layoutFlags, BufferMode bufferMode, int numInstances)
121 : UniformBlockCase (context.getTestContext(), context.getRenderContext(), name, description, glu::GLSL_VERSION_300_ES, bufferMode)
155 BlockSingleNestedStructCase (Context& context, const char* name, const char* description, deUint32 layoutFlags, BufferMode bufferMode, int numInstances
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutTests.cpp 68 RandomSSBOLayoutCase (tcu::TestContext& testCtx, const char* name, const char* description, BufferMode bufferMode, deUint32 features, deUint32 seed);
89 RandomSSBOLayoutCase::RandomSSBOLayoutCase (tcu::TestContext& testCtx, const char* name, const char* description, BufferMode bufferMode, deUint32 features, deUint32 seed)
90 : SSBOLayoutCase (testCtx, name, description, bufferMode)
331 static void createRandomCaseGroup (tcu::TestCaseGroup* parentGroup, tcu::TestContext& testCtx, const char* groupName, const char* description, SSBOLayoutCase::BufferMode bufferMode, deUint32 features, int numCases, deUint32 baseSeed)
339 group->addChild(new RandomSSBOLayoutCase(testCtx, de::toString(ndx).c_str(), "", bufferMode, features, (deUint32)ndx+baseSeed));
345 BlockSingleStructCase (tcu::TestContext& testCtx, const char* name, const char* description, deUint32 layoutFlags, BufferMode bufferMode, int numInstances
    [all...]
  /external/deqp/modules/gles31/functional/
es31fSSBOLayoutTests.cpp 71 RandomSSBOLayoutCase (Context& context, const char* name, const char* description, BufferMode bufferMode, deUint32 features, deUint32 seed);
94 RandomSSBOLayoutCase::RandomSSBOLayoutCase (Context& context, const char* name, const char* description, BufferMode bufferMode, deUint32 features, deUint32 seed)
95 : SSBOLayoutCase (context.getTestContext(), context.getRenderContext(), name, description, glu::GLSL_VERSION_310_ES, bufferMode)
340 static void createRandomCaseGroup (tcu::TestCaseGroup* parentGroup, Context& context, const char* groupName, const char* description, SSBOLayoutCase::BufferMode bufferMode, deUint32 features, int numCases, deUint32 baseSeed)
348 group->addChild(new RandomSSBOLayoutCase(context, de::toString(ndx).c_str(), "", bufferMode, features, (deUint32)ndx+baseSeed));
354 BlockSingleStructCase (Context& context, const char* name, const char* description, deUint32 layoutFlags, BufferMode bufferMode, int numInstances
    [all...]

Completed in 1411 milliseconds

1 2 3 4 5 6