Home
last modified time | relevance | path

Searched refs:p_width (Results 1 – 6 of 6) sorted by relevance

/sdk/emulator/opengl/host/libs/libOpenglRender/
DWindowSurface.cpp47 WindowSurface *WindowSurface::create(int p_config, int p_width, int p_height) in create() argument
68 if (!win->resizePbuffer(p_width, p_height)) { in create()
73 win->m_width = p_width; in create()
173 bool WindowSurface::resizePbuffer(unsigned int p_width, unsigned int p_height) in resizePbuffer() argument
176 m_pbufWidth == p_width && in resizePbuffer()
212 pbufAttribs[1] = p_width; in resizePbuffer()
225 m_pbufWidth = p_width; in resizePbuffer()
DWindowSurface.h36 static WindowSurface *create(int p_config, int p_width, int p_height);
48 bool resizePbuffer(unsigned int p_width, unsigned int p_height);
DColorBuffer.cpp26 ColorBuffer *ColorBuffer::create(int p_width, int p_height, in create() argument
60 char *zBuff = new char[nComp*p_width*p_height]; in create()
62 memset(zBuff, 0, nComp*p_width*p_height); in create()
65 p_width, p_height, 0, in create()
81 p_width, p_height, 0, in create()
90 cb->m_width = p_width; in create()
DFrameBuffer.h71 HandleType createWindowSurface(int p_config, int p_width, int p_height);
72 HandleType createColorBuffer(int p_width, int p_height, GLenum p_internalFormat);
101 FrameBuffer(int p_width, int p_height);
DFrameBuffer.cpp355 FrameBuffer::FrameBuffer(int p_width, int p_height) : in FrameBuffer() argument
356 m_width(p_width), in FrameBuffer()
405 int p_width, int p_height, float zRot) in setupSubWindow() argument
417 p_x,p_y,p_width,p_height); in setupSubWindow()
436 s_gl.glViewport(0, 0, p_width, p_height); in setupSubWindow()
483 HandleType FrameBuffer::createColorBuffer(int p_width, int p_height, in createColorBuffer() argument
489 ColorBufferPtr cb( ColorBuffer::create(p_width, p_height, p_internalFormat) ); in createColorBuffer()
521 HandleType FrameBuffer::createWindowSurface(int p_config, int p_width, int p_height) in createWindowSurface() argument
526 WindowSurfacePtr win( WindowSurface::create(p_config, p_width, p_height) ); in createWindowSurface()
DColorBuffer.h27 static ColorBuffer *create(int p_width, int p_height,