HomeSort by relevance Sort by last modified time
    Searched refs:SIZE_DONT_CARE (Results 1 - 5 of 5) sorted by null

  /external/deqp/framework/egl/
egluNativeWindow.hpp 56 SIZE_DONT_CARE = - 1
59 int width; //!< Positive size, or SIZE_DONT_CARE
60 int height; //!< Positive size, or SIZE_DONT_CARE
63 WindowParams (void) : width(SIZE_DONT_CARE), height(SIZE_DONT_CARE), visibility(VISIBILITY_DONT_CARE) {}
egluGLContextFactory.cpp 323 const int width = (config.width == glu::RenderConfig::DONT_CARE ? WindowParams::SIZE_DONT_CARE : config.width);
324 const int height = (config.height == glu::RenderConfig::DONT_CARE ? WindowParams::SIZE_DONT_CARE : config.height);
  /external/deqp/framework/platform/raspi/
tcuRaspiPlatform.cpp 109 const int width = params.width != eglu::WindowParams::SIZE_DONT_CARE ? params.width : DEFAULT_WINDOW_WIDTH;
110 const int height = params.height != eglu::WindowParams::SIZE_DONT_CARE ? params.height : DEFAULT_WINDOW_HEIGHT;
  /external/deqp/framework/platform/android/
tcuAndroidPlatform.cpp 116 m_window->setBuffersGeometry(size.x() != eglu::WindowParams::SIZE_DONT_CARE ? size.x() : 0,
117 size.y() != eglu::WindowParams::SIZE_DONT_CARE ? size.y() : 0,
  /external/deqp/framework/platform/win32/
tcuWin32EGLNativeDisplayFactory.cpp 220 params.width == eglu::WindowParams::SIZE_DONT_CARE ? DEFAULT_SURFACE_WIDTH : params.width,
221 params.height == eglu::WindowParams::SIZE_DONT_CARE ? DEFAULT_SURFACE_HEIGHT : params.height)

Completed in 78 milliseconds