Hash :
931c78cb
Author :
Date :
2015-05-04T12:45:53
Fix typo intialize -> initialize Change-Id: Ia39fffc6f2782b918b37ab7ae25ee16ecc98e93a Reviewed-on: https://chromium-review.googlesource.com/269120 Reviewed-by: Geoff Lang <geofflang@chromium.org> Tested-by: Corentin Wallez <cwallez@chromium.org>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
//
// Copyright (c) 2015 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// FunctionsWGL.h: Defines the FuntionsWGL class to contain loaded WGL functions
#include "common/angleutils.h"
#include "libANGLE/renderer/gl/wgl/functionswgl_typedefs.h"
namespace rx
{
class FunctionsWGL : angle::NonCopyable
{
public:
FunctionsWGL();
// Loads all available wgl functions, may be called multiple times
void initialize(HMODULE glModule, HDC context);
// Base WGL functions
PFNWGLCOPYCONTEXTPROC copyContext;
PFNWGLCREATECONTEXTPROC createContext;
PFNWGLCREATELAYERCONTEXTPROC createLayerContext;
PFNWGLDELETECONTEXTPROC deleteContext;
PFNWGLGETCURRENTCONTEXTPROC getCurrentContext;
PFNWGLGETCURRENTDCPROC getCurrentDC;
PFNWGLGETPROCADDRESSPROC getProcAddress;
PFNWGLMAKECURRENTPROC makeCurrent;
PFNWGLSHARELISTSPROC shareLists;
PFNWGLUSEFONTBITMAPSAPROC useFontBitmapsA;
PFNWGLUSEFONTBITMAPSWPROC useFontBitmapsW;
PFNSWAPBUFFERSPROC swapBuffers;
PFNWGLUSEFONTOUTLINESAPROC useFontOutlinesA;
PFNWGLUSEFONTOUTLINESWPROC useFontOutlinesW;
PFNWGLDESCRIBELAYERPLANEPROC describeLayerPlane;
PFNWGLSETLAYERPALETTEENTRIESPROC setLayerPaletteEntries;
PFNWGLGETLAYERPALETTEENTRIESPROC getLayerPaletteEntries;
PFNWGLREALIZELAYERPALETTEPROC realizeLayerPalette;
PFNWGLSWAPLAYERBUFFERSPROC swapLayerBuffers;
PFNWGLSWAPMULTIPLEBUFFERSPROC swapMultipleBuffers;
// Extension functions, may be NULL
PFNWGLCREATECONTEXTATTRIBSARBPROC createContextAttribsARB;
PFNWGLGETPIXELFORMATATTRIBIVARBPROC getPixelFormatAttribivARB;
PFNWGLGETEXTENSIONSSTRINGEXTPROC getExtensionStringEXT;
PFNWGLGETEXTENSIONSSTRINGARBPROC getExtensionStringARB;
PFNWGLSWAPINTERVALEXTPROC swapIntervalEXT;
// WGL_ARB_pbuffer
PFNWGLCREATEPBUFFERARBPROC createPbufferARB;
PFNWGLGETPBUFFERDCARBPROC getPbufferDCARB;
PFNWGLRELEASEPBUFFERDCARBPROC releasePbufferDCARB;
PFNWGLDESTROYPBUFFERARBPROC destroyPbufferARB;
PFNWGLQUERYPBUFFERARBPROC queryPbufferARB;
// WGL_ARB_render_texture
PFNWGLBINDTEXIMAGEARBPROC bindTexImageARB;
PFNWGLRELEASETEXIMAGEARBPROC releaseTexImageARB;
PFNWGLSETPBUFFERATTRIBARBPROC setPbufferAttribARB;
};
}