summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Jeffrey <chjjeffrey@gmail.com>2014-01-02 12:33:57 -0600
committerChristopher Jeffrey <chjjeffrey@gmail.com>2014-01-02 12:33:57 -0600
commit978dde64920e0e2357225cf0ca6e8865a44c7d7e (patch)
tree4741ff68f93b7718d73bd4069142a9555f25ce85
parent44a13b4e767eef1985a4a34723b7cc279e1dc160 (diff)
downloadtdebase-978dde64920e0e2357225cf0ca6e8865a44c7d7e.tar.gz
tdebase-978dde64920e0e2357225cf0ca6e8865a44c7d7e.zip
Fix typo: s/hybird/hybrid/
-rw-r--r--common.h6
-rw-r--r--compton.c16
-rw-r--r--compton.h2
3 files changed, 12 insertions, 12 deletions
diff --git a/common.h b/common.h
index 6003cbf16..5ac37acba 100644
--- a/common.h
+++ b/common.h
@@ -323,7 +323,7 @@ typedef enum {
enum backend {
BKEND_XRENDER,
BKEND_GLX,
- BKEND_XR_GLX_HYBIRD,
+ BKEND_XR_GLX_HYBRID,
NUM_BKEND,
};
@@ -1720,7 +1720,7 @@ find_toplevel(session_t *ps, Window id) {
static inline bool
bkend_use_xrender(session_t *ps) {
return BKEND_XRENDER == ps->o.backend
- || BKEND_XR_GLX_HYBIRD == ps->o.backend;
+ || BKEND_XR_GLX_HYBRID == ps->o.backend;
}
/**
@@ -1729,7 +1729,7 @@ bkend_use_xrender(session_t *ps) {
static inline bool
bkend_use_glx(session_t *ps) {
return BKEND_GLX == ps->o.backend
- || BKEND_XR_GLX_HYBIRD == ps->o.backend;
+ || BKEND_XR_GLX_HYBRID == ps->o.backend;
}
/**
diff --git a/compton.c b/compton.c
index 1281c02b7..95f6b77ce 100644
--- a/compton.c
+++ b/compton.c
@@ -47,7 +47,7 @@ const char * const VSYNC_STRS[NUM_VSYNC + 1] = {
const char * const BACKEND_STRS[NUM_BKEND + 1] = {
"xrender", // BKEND_XRENDER
"glx", // BKEND_GLX
- "xr_glx_hybird",// BKEND_XR_GLX_HYBIRD
+ "xr_glx_hybrid",// BKEND_XR_GLX_HYBRID
NULL
};
@@ -1405,7 +1405,7 @@ win_blur_background(session_t *ps, win *w, Picture tgt_buffer,
switch (ps->o.backend) {
case BKEND_XRENDER:
- case BKEND_XR_GLX_HYBIRD:
+ case BKEND_XR_GLX_HYBRID:
{
// Normalize blur kernels
for (int i = 0; i < MAX_BLUR_PASS; ++i) {
@@ -1478,7 +1478,7 @@ render(session_t *ps, int x, int y, int dx, int dy, int wid, int hei,
XserverRegion reg_paint, const reg_data_t *pcache_reg) {
switch (ps->o.backend) {
case BKEND_XRENDER:
- case BKEND_XR_GLX_HYBIRD:
+ case BKEND_XR_GLX_HYBRID:
{
Picture alpha_pict = get_alpha_pict_d(ps, opacity);
if (alpha_pict != ps->alpha_picts[0]) {
@@ -1643,7 +1643,7 @@ win_paint_win(session_t *ps, win *w, XserverRegion reg_paint,
switch (ps->o.backend) {
case BKEND_XRENDER:
- case BKEND_XR_GLX_HYBIRD:
+ case BKEND_XR_GLX_HYBRID:
{
unsigned short cval = 0xffff * dim_opacity;
@@ -1759,7 +1759,7 @@ paint_all(session_t *ps, XserverRegion region, XserverRegion region_real, win *t
ps->root_width, ps->root_height);
break;
case BKEND_GLX:
- case BKEND_XR_GLX_HYBIRD:
+ case BKEND_XR_GLX_HYBRID:
glClearColor(0.0f, 0.0f, 1.0f, 1.0f);
glClear(GL_COLOR_BUFFER_BIT);
glClearColor(0.0f, 0.0f, 0.0f, 1.0f);
@@ -1937,7 +1937,7 @@ paint_all(session_t *ps, XserverRegion region, XserverRegion region_real, win *t
}
break;
#ifdef CONFIG_VSYNC_OPENGL
- case BKEND_XR_GLX_HYBIRD:
+ case BKEND_XR_GLX_HYBRID:
XSync(ps->dpy, False);
glFinish();
glXWaitX();
@@ -4485,7 +4485,7 @@ usage(int ret) {
" screen." WARNING "\n"
"--backend backend\n"
" Choose backend. Possible choices are xrender, glx, and\n"
- " xr_glx_hybird" WARNING ".\n"
+ " xr_glx_hybrid" WARNING ".\n"
"--glx-no-stencil\n"
" GLX backend: Avoid using stencil buffer. Might cause issues\n"
" when rendering transparent content. My tests show a 15% performance\n"
@@ -6204,7 +6204,7 @@ init_filters(session_t *ps) {
if (ps->o.blur_background || ps->o.blur_background_frame) {
switch (ps->o.backend) {
case BKEND_XRENDER:
- case BKEND_XR_GLX_HYBIRD:
+ case BKEND_XR_GLX_HYBRID:
{
// Query filters
XFilters *pf = XRenderQueryFilters(ps->dpy, get_tgt_window(ps));
diff --git a/compton.h b/compton.h
index 8d1e90e21..22ee195dd 100644
--- a/compton.h
+++ b/compton.h
@@ -686,7 +686,7 @@ static inline void
set_tgt_clip(session_t *ps, XserverRegion reg, const reg_data_t *pcache_reg) {
switch (ps->o.backend) {
case BKEND_XRENDER:
- case BKEND_XR_GLX_HYBIRD:
+ case BKEND_XR_GLX_HYBRID:
XFixesSetPictureClipRegion(ps->dpy, ps->tgt_buffer.pict, 0, 0, reg);
break;
#ifdef CONFIG_VSYNC_OPENGL