Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Side by Side Diff: src/views/win/SkOSWindow_win.cpp

Issue 1151333004: CL to add setFullscreen and setVsync to SkWindow (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: feedback inc Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 #include "SkTypes.h" 8 #include "SkTypes.h"
9 9
10 #if defined(SK_BUILD_FOR_WIN) 10 #if defined(SK_BUILD_FOR_WIN)
(...skipping 601 matching lines...) Expand 10 before | Expand all | Expand 10 after
612 presentANGLE(); 612 presentANGLE();
613 break; 613 break;
614 #endif // SK_ANGLE 614 #endif // SK_ANGLE
615 #endif // SK_SUPPORT_GPU 615 #endif // SK_SUPPORT_GPU
616 default: 616 default:
617 SkASSERT(false); 617 SkASSERT(false);
618 break; 618 break;
619 } 619 }
620 } 620 }
621 621
622 void SkOSWindow::setFullscreen(bool) {}
623
624 void SkOSWindow::setVsync(bool) {}
625
622 #endif 626 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698