Home
last modified time | relevance | path

Searched refs:topLeftOrigin (Results 1 – 8 of 8) sorted by relevance

/external/swiftshader/src/Main/
DFrameBufferWin.cpp19 … width, int height, bool fullscreen, bool topLeftOrigin) : FrameBuffer(width, height, fullscreen, in FrameBufferWin() argument
58 …createFrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin) in createFrameBufferWin() argument
63 if(api == 0 && topLeftOrigin) in createFrameBufferWin()
65 return new sw::FrameBufferDD(windowHandle, width, height, fullscreen, topLeftOrigin); in createFrameBufferWin()
69 return new sw::FrameBufferGDI(windowHandle, width, height, fullscreen, topLeftOrigin); in createFrameBufferWin()
DFrameBufferWin.hpp32 FrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
54 …reateFrameBufferWin(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
DFrameBuffer.hpp40 FrameBuffer(int width, int height, bool fullscreen, bool topLeftOrigin);
99 static bool topLeftOrigin; member in sw::FrameBuffer
DFrameBuffer.cpp46 bool FrameBuffer::topLeftOrigin = false; member in sw::FrameBuffer
48 FrameBuffer::FrameBuffer(int width, int height, bool fullscreen, bool topLeftOrigin) in FrameBuffer() argument
50 this->topLeftOrigin = topLeftOrigin; in FrameBuffer()
156 if(topLeftOrigin) in copy()
214 const int sStride = topLeftOrigin ? (sBytes * width2) : -(sBytes * width2); in copyRoutine()
DFrameBufferGDI.cpp23 …nt height, bool fullscreen, bool topLeftOrigin) : FrameBufferWin(windowHandle, width, height, full… in FrameBufferGDI() argument
DFrameBufferGDI.hpp25 FrameBufferGDI(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
DFrameBufferDD.hpp27 FrameBufferDD(HWND windowHandle, int width, int height, bool fullscreen, bool topLeftOrigin);
DFrameBufferDD.cpp35 …nt height, bool fullscreen, bool topLeftOrigin) : FrameBufferWin(windowHandle, width, height, full… in FrameBufferDD() argument