OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GLFence
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/gl/
gl_fence.h
13
class GL_EXPORT
GLFence
{
15
GLFence
();
16
virtual ~
GLFence
();
19
static
GLFence
* Create();
25
static
GLFence
* CreateWithoutFlush();
35
DISALLOW_COPY_AND_ASSIGN(
GLFence
);
gl_fence.cc
21
GLFence
* CreateFence(bool flush) {
25
scoped_ptr<
GLFence
> fence;
38
DCHECK_EQ(!!fence.get(),
GLFence
::IsSupported());
44
GLFence
::
GLFence
() {
47
GLFence
::~
GLFence
() {
50
bool
GLFence
::IsSupported() {
59
GLFence
*
GLFence
::Create()
[
all
...]
Completed in 251 milliseconds