OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ImageSource
(Results
1 - 6
of
6
) sorted by null
/external/deqp/modules/egl/
teglAndroidUtil.hpp
35
de::MovePtr<
ImageSource
> createAndroidNativeImageSource (glw::GLenum format);
teglImageUtil.hpp
70
class
ImageSource
73
virtual ~
ImageSource
(void) {}
80
de::MovePtr<
ImageSource
> createTextureImageSource (eglw::EGLenum source, glw::GLenum internalFormat, glw::GLenum format, glw::GLenum type, bool useTexLevel0 = false);
81
de::MovePtr<
ImageSource
> createRenderbufferImageSource (glw::GLenum format);
82
de::MovePtr<
ImageSource
> createUnsupportedImageSource (const std::string& message, glw::GLenum format);
teglAndroidUtil.cpp
54
MovePtr<
ImageSource
> createAndroidNativeImageSource (GLenum format)
101
class AndroidNativeImageSource : public
ImageSource
172
MovePtr<
ImageSource
> createAndroidNativeImageSource (GLenum format)
176
return MovePtr<
ImageSource
>(new AndroidNativeImageSource(format));
teglImageUtil.cpp
153
class GLImageSource : public
ImageSource
514
class UnsupportedImageSource : public
ImageSource
536
MovePtr<
ImageSource
> createTextureImageSource (EGLenum source, GLenum internalFormat, GLenum format, GLenum type, bool useTexLevel0)
539
return MovePtr<
ImageSource
>(new Texture2DImageSource(internalFormat, format, type, useTexLevel0));
541
return MovePtr<
ImageSource
>(new TextureCubeMapImageSource(source, internalFormat, format, type, useTexLevel0));
544
MovePtr<
ImageSource
> createRenderbufferImageSource (GLenum format)
546
return MovePtr<
ImageSource
>(new RenderbufferImageSource(format));
549
MovePtr<
ImageSource
> createUnsupportedImageSource (const string& message, GLenum format)
551
return MovePtr<
ImageSource
>(new UnsupportedImageSource(message, format));
teglImageTests.cpp
319
MovePtr<
ImageSource
> getImageSource (EGLint target, GLenum internalFormat, GLenum format, GLenum type, bool useTexLevel0)
343
return MovePtr<
ImageSource
>();
394
const UniquePtr<
ImageSource
> m_source;
teglImageFormatTests.cpp
185
Create (MovePtr<
ImageSource
> imgSource) : m_imgSource(imgSource) {}
191
UniquePtr<
ImageSource
> m_imgSource;
275
MovePtr<UniqueImage> createImage (const
ImageSource
& source, const ClientBuffer& buffer) const;
323
MovePtr<UniqueImage> GLES2ImageApi::createImage (const
ImageSource
& source, const ClientBuffer& buffer) const
[
all
...]
Completed in 65 milliseconds